Re: Text field case sensitivity problem

2011-06-30 Thread Mike Sokolov
Yes, and this too: https://issues.apache.org/jira/browse/SOLR-219 On 06/30/2011 12:46 PM, Erik Hatcher wrote: Jamie - there is a JIRA about this, at least one: Erik On Jun 15, 2011, at 10:12 , Jamie Johnson wrote: So simply lower c

Re: Text field case sensitivity problem

2011-06-30 Thread Erik Hatcher
Jamie - there is a JIRA about this, at least one: Erik On Jun 15, 2011, at 10:12 , Jamie Johnson wrote: > So simply lower casing the works but can get complex. The query that I'm > executing may have things like ranges which require som

Re: Text field case sensitivity problem

2011-06-30 Thread Mike Sokolov
Yes, after posting that response, I read some more and came to the same conclusion... there seems to be some interest on the dev list in building a capability to specify an analysis chain for use with wildcard and related queries, but it doesn't exist now. -Mike On 06/30/2011 10:34 AM, Jamie

Re: Text field case sensitivity problem

2011-06-30 Thread Jamie Johnson
I think my answer is here... "On wildcard and fuzzy searches, no text analysis is performed on the search word. " taken from http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#Analyzers On Thu, Jun 30, 2011 at 10:23 AM, Jamie Johnson wrote: > I'm not familiar with the CharFilters, I'l

Re: Text field case sensitivity problem

2011-06-30 Thread Jamie Johnson
I'm not familiar with the CharFilters, I'll look into those now. Is the solr.LowerCaseFilterFactory not handling wildcards the expected result or is this a bug? On Wed, Jun 15, 2011 at 4:34 PM, Mike Sokolov wrote: > I wonder whether CharFilters are applied to wildcard terms?  I suspect they > mi

Re: Text field case sensitivity problem

2011-06-15 Thread Mike Sokolov
I wonder whether CharFilters are applied to wildcard terms? I suspect they might be. If that's the case, you could use the MappingCharFilter to perform lowercasing (and strip diacritics too if you want that) -Mike On 06/15/2011 10:12 AM, Jamie Johnson wrote: So simply lower casing the works

Re: Text field case sensitivity problem

2011-06-15 Thread Jamie Johnson
So simply lower casing the works but can get complex. The query that I'm executing may have things like ranges which require some words to be upper case (i.e. TO). I think this would be much better solved on Solrs end, is there a JIRA about this? On Tue, Jun 14, 2011 at 5:33 PM, Mike Sokolov wr

Re: Text field case sensitivity problem

2011-06-14 Thread Mike Sokolov
opps, please s/Highlight/Wildcard/ On 06/14/2011 05:31 PM, Mike Sokolov wrote: Wildcard queries aren't analyzed, I think? I'm not completely sure what the best workaround is here: perhaps simply lowercasing the query terms yourself in the application. Also - I hope someone more knowledgeable

RE: Text field case sensitivity problem

2011-06-14 Thread Bob Sandiford
bob.sandif...@sirsidynix.com www.sirsidynix.com > -Original Message- > From: Jamie Johnson [mailto:jej2...@gmail.com] > Sent: Tuesday, June 14, 2011 5:13 PM > To: solr-user@lucene.apache.org > Subject: Re: Text field case sensitivity problem > > Also of interest to me

Re: Text field case sensitivity problem

2011-06-14 Thread Mike Sokolov
Wildcard queries aren't analyzed, I think? I'm not completely sure what the best workaround is here: perhaps simply lowercasing the query terms yourself in the application. Also - I hope someone more knowledgeable will say that the new HighlightQuery in trunk doesn't have this restriction, bu

Re: Text field case sensitivity problem

2011-06-14 Thread Jamie Johnson
Also of interest to me is this returns results http://localhost:8983/solr/select?defType=lucene&q=Person_Name:Kristine On Tue, Jun 14, 2011 at 5:08 PM, Jamie Johnson wrote: > I am using the following for my text field: > > positionIncrementGap="100" autoGeneratePhraseQueries="true"> >