Re: How to handle special characters in fuzzy search query

2015-05-08 Thread Tomasz Borek
FWIW you may also want to drop the boolean ops in favour of + and - (OR being default) pozdrawiam, LAFK 2015-05-08 18:59 GMT+02:00 Erick Erickson : > Steven: > > They're listed on the ref guide I posted. Not a concise list, but > you'll see && || and other "interesting" bits. > > On Fri, May 8,

Re: How to handle special characters in fuzzy search query

2015-05-08 Thread Erick Erickson
Steven: They're listed on the ref guide I posted. Not a concise list, but you'll see && || and other "interesting" bits. On Fri, May 8, 2015 at 9:20 AM, Steven White wrote: > Hi Erick, > > Is there a documented list of all operators (AND, OR, NOT, etc.) that also > need to be escaped? Are there

Re: How to handle special characters in fuzzy search query

2015-05-08 Thread Steven White
Hi Erick, Is there a documented list of all operators (AND, OR, NOT, etc.) that also need to be escaped? Are there more beside the 3 I listed? Thanks Steve On Fri, May 8, 2015 at 11:47 AM, Erick Erickson wrote: > Each of the characters you identified are characters that have meaning > to the

Re: How to handle special characters in fuzzy search query

2015-05-08 Thread Erick Erickson
Each of the characters you identified are characters that have meaning to the query parser, '+' is a mandatory clause, '-' is a NOT operator and * is a wildcard. To get through the query parser, these (and a bunch of others, see below) must be escaped. Personally, though, I'd pre-scrub the data. D

How to handle special characters in fuzzy search query

2015-05-07 Thread Madhav Bahuguna
So my solr query is implemented in two parts,first query does an exact search if there are no results found for exact then it goes to the second query that does a fuzzy search. every things works fine but in situations like-->A user enters "burg +" So in exact search no records will come,so second