Re: Lucene id generation

2006-12-12 Thread Waheed Mohammed
ustom document ids? > > > -Original Message- > > From: Find Me [mailto:[EMAIL PROTECTED] > > Sent: Monday, December 11, 2006 4:34 PM > > To: java-user@lucene.apache.org > > Subject: Re: Lucene id generation > > > > On 12/11/06, Waheed Mohammed <[EMAIL PROTE

Lucene id generation

2006-12-11 Thread Waheed Mohammed
Hello, Is there a way to influence lucene's generation of ids while indexing. my requirement is. I want to have different indexes where no index should have ids that have been assigned to an index earlier. for instance IDX1 : {0.100} IDX2: {101...200} IDX3: {201...300} but not

Re: Handling OR, NOT, AND operators in search query

2006-08-15 Thread Waheed Mohammed
you are propbably lower casing your queryString before being given to QueryParser. String queryString = queryString.toLowerCase(); Query query = MultiFieldQueryParser.parse(queryString, ); make sure that your queryString has operators in upperCase before being given to QueryParser Am Mo