Re: Dismax boost + payload boost

2012-05-23 Thread matteosilv
I finally get it working... I was compiling using a different version of solr my class 3.6, while my working solr version was the 3.5 -- View this message in context: http://lucene.472066.n3.nabble.com/Dismax-boost-payload-boost-tp3432650p3985797.html Sent from the Solr - User mailing list archiv

Re: Dismax boost + payload boost

2012-05-23 Thread matteosilv
yes, as in the linked post: public class PayloadSimilarity extends DefaultSimilarity { @Override public float scorePayload(int docId, String fieldName, int start, int end, byte[] payload, int offset, int length) { if (length > 0) { return PayloadHelper.decodeFloat(payload,

Re: Dismax boost + payload boost

2012-05-23 Thread Ahmet Arslan
> In the query debug i can see that i'm using the modified > query parser > however there aren't debug information about the payload > boosts. > I've not implemented a request handler, but i'm specifiying > all the > parameters (e.g. defType=payload plf=entityIdList...) in the > request. > What am

Re: Dismax boost + payload boost

2012-05-23 Thread matteosilv
I'm trying to get working the digitalpebble payload queryparser... *I've a multivalued field with payloads:* *with type:* In the query debug i can see that i'm using the modified query parser however there

Re: Dismax boost + payload boost

2011-10-19 Thread Jean-Claude Dauphin
Hello Milan, You may also be interesting by the following article: "Using Payloads with DisMaxQParser in SOLR " http://digitalpebble.blogspot.com/2010/08/using-payloads-with-dismaxqparser-in.html I have implemen