Re: Solr boolean operators

2011-01-13 Thread dante stroe
To my understanding: in terms of the results that will be matched by your query ... it's the same. In terms of the score of the results no, since, if you are using the first query, the documents that will match both the a and the b terms, will match higher then the ones matching just the a

Re: FunctionQuery plugin propieties

2011-01-12 Thread dante stroe
Nevermind, I found it. You can add xml children to your plugin declaration in solrconfig.xml and then retrieve them by casting the namedList arguments received by your plugin at initialitzaion to SolrParams. On Tue, Jan 11, 2011 at 10:28 AM, dante stroe dante.st...@gmail.com wrote: Hi

FunctionQuery plugin propieties

2011-01-11 Thread dante stroe
Hi, Is there any way one can define proprieties for a function plugin extending the ValueSourceParser inside solrconfig.xml (as one can do with the defaults attribute for a query parser plugin inside the request handler)? Thanks, Dante

Lucene Scorer Extension?

2011-01-07 Thread dante stroe
Hello, What I am trying to do is build a personalized search engine. The aim is to have the resulting documents' scores depend on users' preferences. I've already built some Solr plugins (request handlers mainly), however I am not sure that what I am trying to do can be achieved by a plugin.

Define your own function query

2011-01-06 Thread dante stroe
Hello, I would like to know if it is possible to define your own function query (like a plugin, instead of the already defined ones in herehttp://wiki.apache.org/solr/FunctionQuery) that I could later on use as insde bf? If so which is the class That I am supposed to extend? thank you, Dante