我正在使用lucene搜索来获取由某些字符串过滤的存储桶项目,这是我的代码:
var innerQuery = new FullTextQuery(myString);
var hits = searchContext.Search(innerQuery, searchIndex.GetDocumentCount());
是否有一些查询或不同的东西可以让我获得所有索引项目?我尝试使用空的“myString”但是有一个错误,它不能为空.
最佳答案 您可以使用Lucene.Net.Search.MatchAllDocsQuery:
SearchHits hits = searchContext.Search(new MatchAllDocsQuery(), int.MaxValue);