Re: Solr query syntax.

2013-12-02 Thread Jack Krupansky
Sent: Monday, December 02, 2013 3:17 AM To: solr-user@lucene.apache.org Subject: Re: Solr query syntax. Im using the default qparser that come with solr 4.4 , Is there anything better? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-query-syntax-tp4103784p4104344.html

Re: Solr query syntax.

2013-12-02 Thread Ahmet Arslan
Hi, Choice of query parser depends on your needs. I am just surprised that you used prefix notation in your example.  Default query parser syntax for and(blabla , name: "george")  is q=blabla AND name:george Term blabla (which does not consider field) parsed against default search field. Defaul

Re: Solr query syntax.

2013-12-02 Thread elmerfudd
Im using the default qparser that come with solr 4.4 , Is there anything better? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-query-syntax-tp4103784p4104344.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr query syntax.

2013-11-28 Thread Ahmet Arslan
Hi, No it does not ignore. &debugQuery=on shows actual parsed query. By the way default query parser does not support prefix AND(a, b, c) notation. Which query parser are you using? On Thursday, November 28, 2013 6:50 PM, elmerfudd wrote: Is solr ignoring parts of the query that dont conside

Re: solr query syntax

2008-06-06 Thread Otis Gospodnetic
Hi Cam, Unless I'm misunderstanding your question, you should be able to do that pretty just like you typed it. If you enter that on Solr /admin page, do you get an error or do you not get the desired results? If you add &debugQuery=true to the URL, you will see what query is getting executed.