RE: Index an entire Phrase and not it's constituent parts?

2010-03-14 Thread MitchK
I'm sorry for doubleposting: Drinking a coup of coffee was a good idea. KeepWordFilter seems to mean, that you give a Set of words to it. Everything that is not in the set, will be deleted. Furthermore, the description is correct, since it really behaves like an inversion of StopWordFilter. -- Vi

RE: Index an entire Phrase and not it's constituent parts?

2010-03-14 Thread MitchK
Hmm, I don't understand the problem. Look: If your analyzer looks like: And your document would looks like: "There is a big performance issue. Solving the problem would be great. As long as we try to give our best, ..." After the LowerCaseFilterFactory every

Re: Index an entire Phrase and not it's constituent parts?

2010-03-13 Thread Lance Norskog
y be I should try solr.KeepWordFilterFactory if it can deal with > phrases . . ? > > I'm stumped =( > > -Original Message----- > From: MitchK [mailto:mitc...@web.de] > Sent: Saturday, March 13, 2010 8:12 AM > To: solr-user@lucene.apache.org > Subject: RE: Index

RE: Index an entire Phrase and not it's constituent parts?

2010-03-13 Thread Christopher Ball
? I'm stumped =( -Original Message- From: MitchK [mailto:mitc...@web.de] Sent: Saturday, March 13, 2010 8:12 AM To: solr-user@lucene.apache.org Subject: RE: Index an entire Phrase and not it's constituent parts? Christopher, maybe the SynonymFilter can help you to solve your problem. Let

RE: Index an entire Phrase and not it's constituent parts?

2010-03-13 Thread MitchK
Christopher, maybe the SynonymFilter can help you to solve your problem. Let me try to explain: If you create an extra field in the index for your use-case, you can boost matches of them in a special way. The next step is creating an extra synonym-file. as much as => SpecialPhrase1 in amount o

RE: Index an entire Phrase and not it's constituent parts?

2010-03-13 Thread Christopher Ball
oups formation 'as' we had expected 'in' December." Let me know if that clarifies or not. Most grateful, Christopher -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Tuesday, March 09, 2010 7:52 PM To: solr-user@lucene.apache.org Subject: Re: I

Re: Index an entire Phrase and not it's constituent parts?

2010-03-09 Thread Erick Erickson
t; >> >> Feel like I must be missing something . . . but can't figure out what. >> >> >> >> Do I really need to write a custom analyzer for this? >> >> >> >> _ >> >> From Erick Erickson Subject Re:

Re: Index an entire Phrase and not it's constituent parts?

2010-03-09 Thread Erick Erickson
gt; > Feel like I must be missing something . . . but can't figure out what. > > > > Do I really need to write a custom analyzer for this? > > > > _ > > From Erick Erickson Subject Re: Index an entire > Phrase and not it's constituent parts? Date

RE: Index an entire Phrase and not it's constituent parts?

2010-03-09 Thread Christopher Ball
. Do I really need to write a custom analyzer for this? _ >From Erick Erickson Subject Re: Index an entire Phrase and not it's constituent parts? Date Thu, 04 Mar 2010 19:55:58 GMT Try KeywordTokenizerFactory. This page is very useful: http://wiki.apache.org/solr/AnalyzersToke

Re: Index an entire Phrase and not it's constituent parts?

2010-03-04 Thread Erick Erickson
Try KeywordTokenizerFactory. This page is very useful: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters HTH Erick On Thu, Mar 4, 2010 at 2:31 PM, Christopher Ball < christopher.b...@metaheuristica.com> wrote: > How can I Ind

Index an entire Phrase and not it's constituent parts?

2010-03-04 Thread Christopher Ball
How can I Index an entire Phrases and not it's constituent parts? I want to index collations as a single term in the index, and not as the multiple terms that comprise the phrase, for example, I want to index: "as much as" but not the independent parts: "as", "much", "as". Any guidance appr