Re: Queries of type field:value not functioning

2010-01-14 Thread Otis Gospodnetic
:09:12 PM > Subject: Re: Queries of type field:value not functioning > > Hi, > > Thanks for the responses. > q.alt did the job. Turns out that the dismax query parser was at fault, and > wasn't able to handle queries of the type *:*. Putting the query in q.alt, > or a

Re: Queries of type field:value not functioning

2010-01-13 Thread Siddhant Goel
Hi, Thanks for the responses. q.alt did the job. Turns out that the dismax query parser was at fault, and wasn't able to handle queries of the type *:*. Putting the query in q.alt, or adding a defType=lucene (as pointed out to me on the irc channel) worked. Thanks, -- - Siddhant

Re: Queries of type field:value not functioning

2010-01-13 Thread Otis Gospodnetic
Hi, Pointers: * What happens when you don't use a field name? * What are your logs showing? * What is &debugQuery=on showing? * What is the Analysis page for some of the problematic queries showing? Otis -- Sematext -- http://sematext.com/ -- Solr - Lucene - Nutch

Re: Queries of type field:value not functioning

2010-01-13 Thread Chantal Ackermann
try /solr/select?q.alt=*:*&qt=dismax or /solr/select?q=some search term&qt=dismax dismax should be configured in solrconfig.xml by default, but you have to adapt it to list the fields from your schema.xml and for anything with known field: /solr/select?q=field:value&qt=standard Cheers, Chanta