I want to compute overlap counts (how many of the query terms are found in the specified document) for each document in search result.
Asked
Active
Viewed 257 times
2
-
possible duplicate of [How can I tell Solr to return the hit search terms per document?](http://stackoverflow.com/questions/25038080/how-can-i-tell-solr-to-return-the-hit-search-terms-per-document) – MatsLindh Sep 14 '14 at 14:55
-
1Not quite sure what your trying to accomplish here. Usually that information is accessed by the [Similarity](http://lucene.apache.org/core/4_10_0/core/org/apache/lucene/search/similarities/Similarity.html), where it is readily accessible to the [`coord` method](http://lucene.apache.org/core/4_10_0/core/org/apache/lucene/search/similarities/Similarity.html#coord(int,%20int)). Does having it in that context work for what you need? – femtoRgon Sep 14 '14 at 22:08
-
Thanks @femtoRgon, Yes, I want to sort search result using overlap counts and then using doc score. – htaghizadeh Sep 15 '14 at 06:18