Re: OR condition in search...

2007-05-07 Thread Chris Hostetter
: is causing the interpretation to be the way it is. In certain cases, where : the typed in field might : have user name such as "kathy_k", we want it to look for the exact : expression in addition to : what the Analyzer does. i don't know that i understand your question ... if the analyzer is sp

Re: OR condition in search...

2007-05-07 Thread escher2k
7;ll get differnet behavior (not just when indexing, but > when querying too) > > > > -Hoss > > > -- View this message in context: http://www.nabble.com/OR-condition-in-search...-tf3695012.html#a10361670 Sent from the Solr - User mailing list archive at Nabble.com.

Re: OR condition in search...

2007-05-04 Thread Chris Hostetter
: search = "3 D" OR "3D" ? Reason being, by default, a search for "3D" is : being split : into "3 D". these seems to relate to your other recent question ... Solr is not splitting "3D" into "3 D" by default at query time just for hte hell of it ... it's doing that because it's what the analyzer c

OR condition in search...

2007-05-04 Thread escher2k
Is is possible to specify that a term to be looked up in alternate ways" - e.g. search = "3 D" OR "3D" ? Reason being, by default, a search for "3D" is being split into "3 D". Thanks. -- View this message in context: http://www.nabble.com/OR-co