Ejemplo n.º 1
0
 public void SaveIndexToFile(String path)
 {
     FileHandler.SaveToXML <ConcurrentDictionary <String, Document> >(path, docs);
     FileHandler.SaveToXML <Lexicon>(path, lex);
 }
Ejemplo n.º 2
0
 public static Index LoadIndexFromFile(String path)
 {
     return(new Index(FileHandler.LoadFromXML <Lexicon>(path), FileHandler.LoadFromXML <ConcurrentDictionary <String, Document> >(path)));
 }