Good morning, I'm currently running Solr 4.0 final (multi core) with manifoldcf v1.3 dev on tomcat 7. Early on, I used copyfield to put the meta data into the text field to simplify solr queries (i.e. I only have to query one field now.) However, a lot people are concerned about improving relevance. I found a relevancy solution on page 298 of the Apache Solr 4.0 Cookbook; however is there a way to modify it so it only uses one field? (i.e. the text field?)
(Note well: I have multi cores and the schemas are all somewhat different; If I can't get this to work with one field then I would have to build complex queries for all the other cores; this would vastly over complicate the UI. Is there another way?) here's the requesthandler in question: <requestHandler name="/better" class="solr.StandardRequestHandler"> <1st name="defaults"> <str name="indent">true</str> <str name="q">_query_:"{!edismaxqf=$qfQuery mm=$mmQuerypf=$pfQuerybq=$boostQuery v=$mainQuery}" </str> <str name="qfQuery">name^100000 description</str> <str name="mmQuery">1</str> <str name="pfQuery">name description</str> <str name="boostQuery">_query_:"{!edismaxqf=$boostQuerQf mm=100% v=$mainQuery}"^100000</str> </1st> </requestHandler> -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-improve-keyword-relevance-tp4079462.html Sent from the Solr - User mailing list archive at Nabble.com.