Hi all, I'm working to replace my old lucene java-based search functionalities with Solr.
I implemented multi-field query search using the "dismax", but the query seams to take to much time (if I compare with my old lucene queries). There is another way to perform multi-field query in solr? Following you can see the fragment og configuration of my solrconfig.xml and a sample query I'm doing. ....... <requestHandler name="partitioned" class="solr.SearchHandler" > <lst name="defaults"> <str name="defType">dismax</str> <str name="echoParams">explicit</str> <str name="qf">text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0</str> <str name="mm">2<-1 5<-2 6<90%</str> <!-- This is an example of using Date Math to specify a constantly moving date range in a config... --> <str name="bq">incubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2</str> </lst> ....... ....... http://168.202.105.33:8080/solrServer/select/?q=food&start=0&indent=on&qf=txt.abstract_en+txt.abstract_fr+txt.abstract_es+txt.abstract_ar+txt.abstract_zh+txt.abstract_ot+txt.title_en+txt.title_fr+txt.title_es+txt.title_ar+txt.title_zh+txt.title_ot+txt.content+txt.year+txt.jobNumber+txt.lang&echoParams=all&version=2.2&qt=dismax&fl=txt.pubid&rows=10000 Thank you, Alessandro -- View this message in context: http://www.nabble.com/multifield-queries-dismax-or...-tp23214215p23214215.html Sent from the Solr - User mailing list archive at Nabble.com.