Re: Searching special characters

2016-02-12 Thread Erick Erickson
Also look at the admin/analysis page to see the effects of various filters in your analysis chain. It's very likely that the * is not even _in_ the index. Here is a partial list of elements that _may_ be in your analysis chain: https://cwiki.apache.org/confluence/display/solr/Filter+Descriptions a

Re: Searching special characters

2016-02-12 Thread Modassar Ather
These special characters can be removed if at begging or end or can be taken care by the relevant filters depending on the schema defined. E.g "Audit"/*Audit should be searched by query Audit so I see no reason of indexing "/* of the content. You can use PatternReplaceFilter for replacing these spe

Re: Searching special characters

2016-02-12 Thread Anil
Thanks for quick response. Should these be treated differently during index ? I have tried *\"Audit* which is returning results of *Audit *also which is incorrect. what do you say ? On 12 February 2016 at 15:07, Modassar Ather wrote: > You can search them by escaping with backslash. > > Best,

Re: Searching special characters

2016-02-12 Thread Modassar Ather
You can search them by escaping with backslash. Best, Modassar

Searching special characters

2016-02-12 Thread Anil
HI, How can we search special characters like *, " (double quote) where these are actually solr uses for exact and wild card searches. Please advice. Regards, Anil