internal SimpleFulltextIndexReader(SearcherReference searcherRef, string[] properties, Analyzer analyzer, TokenHolder propertyKeyTokenHolder)
 {
     this._searcherRef            = searcherRef;
     this._properties             = properties;
     this._analyzer               = analyzer;
     this._propertyKeyTokenHolder = propertyKeyTokenHolder;
 }
Exemple #2
0
 public void Dispose()
 {
     try
     {
         Writer.Commit();
         SearcherReference.Dispose();
     }
     catch { }
 }