I'm trying to get working the digitalpebble payload queryparser... *I've a multivalued field with payloads:*
<field name="entityIdList" type="namedentities_expertfinding" indexed="true" stored="true" multiValued="true" termVectors="true" termPostitions="true" termOffsets="true" /> *with type:* <fieldType name="namedentities_expertfinding" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.DelimitedPayloadTokenFilterFactory" encoder="float"/> </analyzer> <analyzer type="query"> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> </analyzer> </fieldType> 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 i possibly doing wrong? -- View this message in context: http://lucene.472066.n3.nabble.com/Dismax-boost-payload-boost-tp3432650p3985603.html Sent from the Solr - User mailing list archive at Nabble.com.