Re: Cache BitSet or doc number?

2007-10-26 Thread Thom Nelson
Check out the HashDocSet from Solr, this is the best way to cache small sets of search results. In general, the Solr BitSet/DocSet classes are more efficient than using the standard java.util.BitSet. You can use these independent of the rest of Solr (though I recommend checking out Solr if yo

Re: Cache BitSet or doc number?

2007-10-28 Thread Thom Nelson
representation > of BitSet and SortedVIntList. > > Regards, > Paul Elschot > > > On Saturday 27 October 2007 02:15:48 Yonik Seeley wrote: > > On 10/26/07, John Patterson <[EMAIL PROTECTED]> wrote: > > > Thom Nelson wrote: > > > > Check out the HashDo

Re: FieldCache Implementations

2007-12-03 Thread Thom Nelson
I have implemented a custom version of FieldCache to handle multi-valued fields, but this requires an interface change so it isn't applicable to what you're suggesting. However, it would be great to have a standard solution for handling multiple values. Grant Ingersoll wrote: Does any out the