Beispiel #1
0
        public List <Doc> search(string query, string indexPath)
        {
            tokenType = new SimpleTokenization();
            var Tokenization = tokenType.tokenize(query);
            var IDs          = base.search(Tokenization, indexPath);

            return(Doc.getDocsById(IDs));
        }
Beispiel #2
0
 public BaseIndex(IIndexStruch IIS, ITokenization TT)
 {
     indexStructure = IIS;
     tokenType      = TT;
 }