Sure thing. I downloaded the latest version of Solr, started up the example server, and indexed the ipod_other.xml file. The following URLs give a result: http://localhost:8983/solr/select/?q=ipod http://localhost:8983/solr/select/?q=the+ipod http://localhost:8983/solr/select/?q=ipod&qt=dismax The following URL does not: http://localhost:8983/solr/select/?q=the+ipod&qt=dismax the toString in the last case is: +(((cat:the^1.4 | id:the^10.0)~0.01 (text:ipod^0.5 | cat:ipod^1.4 | features:ipod | name:ipod^1.2 | sku:ipod^1.5 | manu:ipod^1.1 | id:ipod^10.0)~0.01)~2) (text:ipod^0.2 | manu:ipod^1.4 | name:ipod^1.5 | manu_exact:the ipod^1.9 | features:ipod^1.1)~0.01 (org.apache.solr.search.function.OrdFieldSource:ord(poplarity))^0.5 (org.apache.solr.search.function.ReciprocalFloatFunction:1000.0/(1.0*float(rord(price))+1000.0))^0.3
>>> Chris Hostetter <[EMAIL PROTECTED]> 6/7/2007 2:12 PM >>> : It appears that if your search terms include stopwords and you use the : DisMax request handler, you get no results whereas the same search with : the standard request handler does give you results. Is this a bug or by : design? dismax works just fine with stop words ... can you give a specific example url? what does the query toString look like when you use debugQuery? -Hoss