Re: using different analyzer for searching

2005-04-01 Thread Erik Hatcher
On Mar 31, 2005, at 10:49 PM, pashupathinath wrote: i should do even more analysis as suggested by you before i should come to a decision of which analyser i should be using to solve this. what about writing a custom analyzer to solve this ??? how can i go abt the logic of implementing this in a

RE: using different analyzer for searching

2005-04-01 Thread Karthik N S
Karthik -Original Message- From: pashupathinath [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 9:19 AM To: java-user@lucene.apache.org Subject: Re: using different analyzer for searching hi erik, i'm creating a blogger application, where the users can create blogs, u

Re: using different analyzer for searching

2005-03-31 Thread pashupathinath
hi erik, i'm creating a blogger application, where the users can create blogs, upload pictures and post comments etc etc. i'm storing all the information using mysql database. i'm indexing the database contents and searching on this index.i'm using lucene to implement this feature. i give

Re: using different analyzer for searching

2005-03-31 Thread Erik Hatcher
On Mar 31, 2005, at 11:44 AM, pashupathinath wrote: is it possible to index using a predefined analyzer and search using a custom analyzer ?? Yes, its perfectly fine to do so with the caveat that you end up searching for the terms exactly as they were indexed. I end up doing this in most applic