RE: Filtering in Lucene

2002-05-14 Thread Nader S. Henein
8:49 PM To: Lucene Users List; [EMAIL PROTECTED] Subject: Re: Filtering in Lucene Yes, the BitSet has to be the same size as the number of documents in the index. If you have enough memory you could cache the BitSet in the VM's memory rather then storing it in a clob though. Joel - O

Re: Filtering in Lucene

2002-05-13 Thread Joel Bernstein
To: <[EMAIL PROTECTED]> Sent: Monday, May 13, 2002 11:11 AM Subject: Filtering in Lucene > For those of you who have worked with the BitSet concept to > use lucene in searching within a subset, just to make sure that > I got this right, if I have 100 000 documents to search, my Bi

Filtering in Lucene

2002-05-13 Thread Nader S. Henein
For those of you who have worked with the BitSet concept to use lucene in searching within a subset, just to make sure that I got this right, if I have 100 000 documents to search, my Bit Vector will be of 100 000 length, just to save that vector for repeated use I'll have to use a clob! Am I thin