Re: Word Delimiter issue

2012-07-31 Thread Michael Della Bitta
;> increment enabled for stop word removal (but would falsely match if you used >> a sloppy phrase query or did not have position increment enabled). >> >> -- Jack Krupansky >> >> -Original Message----- From: Michael Della Bitta >> Sent: Tuesday, July 31, 2012 12:03 PM

Re: Word Delimiter issue

2012-07-31 Thread Michael Della Bitta
alsely match if you used > a sloppy phrase query or did not have position increment enabled). > > -- Jack Krupansky > > -Original Message- From: Michael Della Bitta > Sent: Tuesday, July 31, 2012 12:03 PM > To: solr-user@lucene.apache.org > Subject: Word Delimiter issue &

Re: Word Delimiter issue

2012-07-31 Thread Jack Krupansky
match since you have position increment enabled for stop word removal (but would falsely match if you used a sloppy phrase query or did not have position increment enabled). -- Jack Krupansky -Original Message- From: Michael Della Bitta Sent: Tuesday, July 31, 2012 12:03 PM To: solr-user@l

Word Delimiter issue

2012-07-31 Thread Michael Della Bitta
Hello all, We're running into a weird issue with Word Delimiter and apostrophes. For a text field that uses the out of the box field definition: (note that com.jodange.solr.KStemFilterFactory is a backport of KStem for Solr 1.4 we hacked together.) The phrase "T

Re: word delimiter

2010-08-05 Thread Ahmet Arslan
> I have UPPER12-lower and would like > to be able to find it with queries > "UPPER" or "lower". What should break this up for the > index? A > tokenizer or a filter such as WordDelimiterFilterFactory? If all thats you want just LowerCaseTokenizer will be enough.

word delimiter

2010-08-05 Thread j
I have UPPER12-lower and would like to be able to find it with queries "UPPER" or "lower". What should break this up for the index? A tokenizer or a filter such as WordDelimiterFilterFactory? I have tried various combinations of parameters to WordDelimiterFilterFactory and cant get it to split pro

Re: Word Delimiter struggles

2009-01-21 Thread Shalin Shekhar Mangar
On Mon, Jan 19, 2009 at 9:42 PM, David Shettler wrote: > Thank you Shalin, I'm in the process of implementing your suggestion, > and it works marvelously. Had to upgrade to solr 1.3, and had to hack > up acts_as_solr to function correctly. > > Is there a way to receive a search for a given field

Re: Word Delimiter struggles

2009-01-19 Thread David Shettler
Thank you Shalin, I'm in the process of implementing your suggestion, and it works marvelously. Had to upgrade to solr 1.3, and had to hack up acts_as_solr to function correctly. Is there a way to receive a search for a given field, and have solr know to automatically check the two fields? I sup

Re: Word Delimiter struggles

2009-01-17 Thread Shalin Shekhar Mangar
dDelimiterFactory with the preserveOriginal setting, it should do >> what you have outlined. >> >> >> On Sat, Jan 17, 2009 at 8:57 AM, David Shettler wrote: >> >>> This has likely been covered, and I've tried searching through the >>> archives, bu

Re: Word Delimiter struggles

2009-01-17 Thread Shalin Shekhar Mangar
gt; >> title:phpGroupWare >> >> (which is how the entry is indexed originally), you get a match of course. >> >> same with phpgroupware >> >> If I get rid of word delimiter, then things are fine, unless you want >> to search for PHP GroupWare and get a mat

Re: Word Delimiter struggles

2009-01-17 Thread Shalin Shekhar Mangar
; title:phpGroupWare > > (which is how the entry is indexed originally), you get a match of course. > > same with phpgroupware > > If I get rid of word delimiter, then things are fine, unless you want > to search for PHP GroupWare and get a match... > > Basically, I

Word Delimiter struggles

2009-01-16 Thread David Shettler
ch of course. same with phpgroupware If I get rid of word delimiter, then things are fine, unless you want to search for PHP GroupWare and get a match... Basically, I need to get a match on any of these searches: PHPGroupWare PHPGroupware phpGroupware phpGroupWare phpgroupware php groupware php

Re: solr word delimiter

2008-01-05 Thread anuvenk
ym or something > like WordDelimiterFilter. > You can configure WordDelimiterFilter to only catenate too... so h1-b > would become h1b at both index and query time. The downside is that > it might catenate things you want. > > -Yonik > > -- View this message in context: http://www.nabble.com/solr-word-delimiter-tp14630435p14641602.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr word delimiter

2008-01-05 Thread Yonik Seeley
On Jan 5, 2008 2:28 PM, anuvenk <[EMAIL PROTECTED]> wrote: > Thats what i'm thinking too. If i remove solr.worddelimiter filter from both > index and query, the word h1-b will remain as is in the index correct, so if > someone searches for h1b (without hyphens) would it still return the h1-b > doc.

Re: solr word delimiter

2008-01-05 Thread anuvenk
> Sent: Saturday, January 5, 2008 1:24:14 AM > Subject: solr word delimiter > > > I have the word delimiter filter factory in the text field definition > both at > index and query time. > But it does have some negative effects on some search terms like h1-b > visa > I

Re: solr word delimiter

2008-01-05 Thread Otis Gospodnetic
uary 5, 2008 1:24:14 AM Subject: solr word delimiter I have the word delimiter filter factory in the text field definition both at index and query time. But it does have some negative effects on some search terms like h1-b visa It splits this in to three tokens h,1,b. Now if i understand right,

solr word delimiter

2008-01-04 Thread anuvenk
I have the word delimiter filter factory in the text field definition both at index and query time. But it does have some negative effects on some search terms like h1-b visa It splits this in to three tokens h,1,b. Now if i understand right, does solr look for matches for 'h' sepa