Re: how to search for special charcters

2013-03-21 Thread Upayavira
Use an EdgeNGramFilterFactory in your analysis time query parser. But note this will significantly increase the number of terms you are searching for, which will hit performance. Upayavira On Wed, Mar 20, 2013, at 03:47 PM, Niklas Langvig wrote: > Hi > How can in solr serach for all documents tha

how to search for special charcters

2013-03-20 Thread Niklas Langvig
Hi How can in solr serach for all documents that containing parts of the word e-mail in it? This seems to work localhost:8080/document/select?q="e\-mail" But I don't want to have an exact match but instead do localhost:8080/document/select?q=*e\-mail* But that doesn't work How should I search fo