RE: Function writing using lucene

2006-07-06 Thread Amit
Thanks Erick for reply.it will help us. Regards, Amit -Original Message- From: Erick Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 05, 2006 6:32 PM To: java-user@lucene.apache.org; [EMAIL PROTECTED] Subject: Re: Function writing using lucene Amit: You can make

Re: Function writing using lucene

2006-07-05 Thread Erick Erickson
Amit: You can make arbitrarily complex boolean clauses, see BooleanQuery. For that, you don't need a filter. You can add boolean clauses with MUST, SHOULD and MUST NOT (AND, OR, NOT). Filters are for restricting queries that create (under the covers) a large BooleanQuery. You shouldn't think abo

Function writing using lucene

2006-07-04 Thread Amit
Hi All, As i am new in lucene i need help to write some function on lucene. Pls see below i list out functionality i want. i need term membership means term belongs to which fields. e.g. if enter query like: lucene apache so it return me lucene apache is member of contents As per