257258259260261262263264265
} return response; }catch(IOException e){ throw new ThrudexException(e.toString()); } }
176177178179180181182183184
185186187188189190191192
public void optimize() throws ThrudexException{ try{ this.writer.optimize(); }catch(IOException e){ throw new ThrudexException(e.toString()); } }
6768697071727374
try{ //indexMap.put(name, new SimpleLuceneIndex(indexRoot,name)); indexMap.put(name, new RealTimeLuceneIndex(indexRoot,name)); }catch(IOException e){ throw new ThrudexException(e.toString()); } }