简体   繁体   English

Lucene.NET和Facete搜索解决方案

[英]Lucene.NET & Facete Search Solution

Hey just started using Lucene.NET, any was wondering if anyone had a working example of Lucene.NET with a faceted search. 嘿,刚开始使用Lucene.NET,有人想知道是否有人对Lucene.NET进行了多面搜索。

I know this below link http://www.devatwork.nl/articles/lucenenet/faceted-search-and-drill-down-lucenenet/ 我知道以下链接http://www.devatwork.nl/articles/lucenenet/faceted-search-and-drill-down-lucenenet/

Which looked great, but all it does is tell me the number of results in the faceted search but not actually how I can retrieve the index and details of those results. 看起来不错,但它所做的只是告诉我多面搜索的结果数量,但实际上却不告诉我如何检索这些结果的索引和详细信息。 ie as in a normal search in Lucene.NET. 即与在Lucene.NET中进行常规搜索一样。

Ie from that link he has the following snippet 即从该链接,他有以下片段

    private static void FacetedSearch(string indexPath, string genre, string term){
var searcher = new IndexSearcher(indexPath);
// first get the BitArray result from the genre query
var genreQuery = new TermQuery(new Term("genre", genre));
var genreQueryFilter = new QueryFilter(genreQuery);
BitArray genreBitArray = genreQueryFilter.Bits(searcher.GetIndexReader());
Console.WriteLine("There are " + GetCardinality(genreBitArray) + " document with the genre " + genre);

// Next perform a regular search and get its BitArray result
Query searchQuery = MultiFieldQueryParser.Parse(term, new[] {"title", "description"}, new[] {BooleanClause.Occur.SHOULD, BooleanClause.Occur.SHOULD}, new StandardAnalyzer());
var searchQueryFilter = new QueryFilter(searchQuery);
BitArray searchBitArray = searchQueryFilter.Bits(searcher.GetIndexReader());
Console.WriteLine("There are " + GetCardinality(searchBitArray) + " document containing the term " + term);

// Now do the faceted search magic, combine the two bit arrays using a binary AND operation
BitArray combinedResults = searchBitArray.And(genreBitArray);
Console.WriteLine("There are " + GetCardinality(combinedResults) + " document containing the term " + term + " and which are in the genre " + genre);
}

Which will tell me ie there is 2 records for the search term "Dublin" and which are in genre "Financial" which is perfect but the article seems to skip the part where it says how I can retrieve the indexes of those results and display on screen. 哪个会告诉我,即搜索词“ Dublin”有2条记录,而类别为“ Financial”,这是完美的记录,但本文似乎跳过了该部分,它说了如何检索这些结果的索引并显示在屏幕。

He does explain this in the link below for a normal search but not facete search.. 他的确在下面的链接中对此进行了说明,以进行常规搜索,但不进行面搜索。

ie Normal Search 即普通搜索

    private static void Search(string indexPath, string term)
{
// create searcher
var searcher = new IndexSearcher(indexPath);

// create a query which searches through the title and description, the term can be in the title or the description
Query searchQuery = MultiFieldQueryParser.Parse(term, new[] {"title", "description"}, new[] {BooleanClause.Occur.SHOULD, BooleanClause.Occur.SHOULD}, new StandardAnalyzer());

// perform the search
Hits hits = searcher.Search(searchQuery);

// loop through all the hits and show their title
for (int hitIndex = 0; hitIndex < hits.Length(); hitIndex++)
{
// get the corresponding document
Document hitDocument = hits.Doc(hitIndex);

// write its title to the console
Console.WriteLine(hitDocument.GetField("title").StringValue());
}
}

http://www.devatwork.nl/articles/lucenenet/search-basics-lucenenet/ http://www.devatwork.nl/articles/lucenenet/search-basics-lucenenet/

Any help would be greatly appreciated 任何帮助将不胜感激

Edit : 编辑:

Or should I do a search query and then do a Filter on the results ? 还是应该执行搜索查询,然后对结果进行过滤?

The BitArray represents hits. BitArray表示匹配。 Each 1 has an index, that is equal to document id 每个1都有一个索引,等于文档ID

So 1001001 means that documents with position 0, 3 and 6 in index match your search. 因此1001001表示索引中位置为0、3和6的文档与您的搜索匹配。 You just have to retrieve them from lucene index. 您只需要从Lucene索引中检索它们即可。

var searcher = new IndexSearcher(indexPath);

// get document at position 0
var doc = searcher.Doc( 0 );

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM