Re: * not working in Phrase Search in solar 4.4

2013-09-26 Thread Otis Gospodnetic
There is an oldish JIRA issue (with patches?) for "complex queries" https://issues.apache.org/jira/browse/SOLR-1604 Otis -- Solr & ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://sematext.com/spm On Thu, Sep 26, 2013 at 12:15 PM, soumikghosh05 wrote: > Hi, >

Re: * not working in Phrase Search in solar 4.4

2013-09-26 Thread Erick Erickson
Certain parts of the analysis chain can be included in wildcard processing, see anything impolementing MultiTermAware. See: http://wiki.apache.org/solr/MultitermQueryAnalysis But phrases are different, and as Shawn says the analysis chain isn't applied similarly. The data is lowercased, but the wi

Re: * not working in Phrase Search in solar 4.4

2013-09-26 Thread Shawn Heisey
On 9/26/2013 10:15 AM, soumikghosh05 wrote: I have a doc that contains "Hello World" in the title field and title is of type of text_general. When I am searching with title:"Hello Wo*" -- not returning title:"Hello World" -- returning When you use wildcards, your analysis chain is not use

* not working in Phrase Search in solar 4.4

2013-09-26 Thread soumikghosh05
Hi, I have a doc that contains "Hello World" in the title field and title is of type of text_general. When I am searching with title:"Hello Wo*" -- not returning title:"Hello World" -- returning Could you please explain what I am missing? I have used WhitespaceTokenizerFactory instead of Stan