Thanks Andy!
Solr-RA is the same as Solr, except that the underlying search library
is now RankingAlgorithm library instead of Lucene. BoostQParserPlugin
works at the Solr level, so this should still work as before.
A query of the form q={!boost b=log(x)}abcde comes back with results but am not
sure if it is working as expected.
Regards,
- NN
On 5/2/2011 10:08 PM, Andy wrote:
Everything should work as before. So faceting, function
queries, query
boosting should still work.
For eg:
q=name:efghij^2.2 name:abcd^3.2
returns all docs with name efghij and abcd but ranking
documents named
abcd above efghij
Thanks Nagendra.
But I wasn't talking about field boost. The kind of boosting I need:
{!boost b=log(popularity)}foo
requires BoostQParserPlugin
(http://search-lucene.com/jd/solr/org/apache/solr/search/BoostQParserPlugin.html
)
Does Solr-RA come with BoostQParserPlugin?
Thanks.