you could pack some of them
together?
Did you have a chance to read Lucene in Action, could help you greatly.
good luck
- Original Message
From: Sunil Kumar PK <[EMAIL PROTECTED]>
To: java-user@lucene.apache.org
Sent: Saturday, 4 November, 2006 4:12:57 PM
Subject: Re: How to i
Hi,
I am using Lucene's Remote Parallel Multisearcher with 10 nodes in my search
cluster having 200+ distributed index fragments (1 Index fragment = 4GB). I
have 30+ fields in my index, and I am storing a master XML file (contains 5
to 30 pages of information) in one field. I also have two web s
You probably can skip the QueryParser part and just construct a
TermQuery with your term and field. That will save you a few ticks.
I'm betting you have just included the code below for example, so
this may not apply, however, you want to make sure you aren't
creating the IndexSearcher ev
Hi,
In my index there is a unique field, "MY_DOCNO".
If I want get a document from the index with MY_DOCNO=1000, I am using
following code,
IndexSearcher isearcher = new IndexSearcher("myindex1");
QueryParser qp = new QueryParser("MY_DOCNO", new StandardAnalyzer());
Query query = qp.parse("MY