RE: How can I tell Lucene to also use analyzer for Keyword fields

2006-06-13 Thread Ramana Jelda
Thanks for your replies. > -Original Message- > From: Chris Hostetter [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 13, 2006 9:13 AM > To: java-user@lucene.apache.org > Subject: Re: How can I tell Lucene to also use analyzer for > Keyword fields > > &g

Re: How can I tell Lucene to also use analyzer for Keyword fields

2006-06-13 Thread Chris Hostetter
: It seems anaylzers are never get called for UnTokenized fields(Seems no luck : either using PerFieldAnalyzer). The label "tokenized" is somewhat missleading .. it assumes that your analyzer will do some tokenizing (which it doesn't have to do in the case of the KeywordAnalyzer). The best thing

RE: How can I tell Lucene to also use analyzer for Keyword fields

2006-06-12 Thread Mordo, Aviran (EXP N-NANNATEK)
-user@lucene.apache.org Subject: Re: How can I tell Lucene to also use analyzer for Keyword fields Mordo, Aviran (EXP N-NANNATEK) wrote: > What you are asking is not possible. The whole purpose of the analyzer > is to tokenize the fields, so if you want them to be tokenized don't &

Re: How can I tell Lucene to also use analyzer for Keyword fields

2006-06-12 Thread Steven Rowe
Mordo, Aviran (EXP N-NANNATEK) wrote: What you are asking is not possible. The whole purpose of the analyzer is to tokenize the fields, so if you want them to be tokenized don't use the Keyword fields. Um, KeywordAnalyzer?

RE: How can I tell Lucene to also use analyzer for Keyword fields

2006-06-12 Thread Mordo, Aviran (EXP N-NANNATEK)
http://www.aviransplace.com -Original Message- From: Ramana Jelda [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 12:18 PM To: java-user@lucene.apache.org Subject: How can I tell Lucene to also use analyzer for Keyword fields Hi, It seems anaylzers are never get called for UnTokenized fields(Seems no

How can I tell Lucene to also use analyzer for Keyword fields

2006-06-12 Thread Ramana Jelda
Hi, It seems anaylzers are never get called for UnTokenized fields(Seems no luck either using PerFieldAnalyzer). What should I do, If I would like to use analyzer for Untokenized fields. Lets say for Keyword or Unstored fields. I basically would like to use lucene Sort functionality on UnTokenize