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
e - Nutch From: Siddhant Goel To: solr-user@lucene.apache.org Sent: Wed, January 13, 2010 5:38:53 AM Subject: Queries of type field:value not functioning Hi all, Any query I make which is of type field:value does not return any documents. Same is the case for the *:* query. The *:* quer

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

Queries of type field:value not functioning

2010-01-13 Thread Siddhant Goel
Hi all, Any query I make which is of type field:value does not return any documents. Same is the case for the *:* query. The *:* query doesn't return any result either. The index size is close to 1GB now, so it should be returning some documents. The rest of the queries are functioning properly. A