Re: Limit of Lucene

2008-05-08 Thread Grant Ingersoll
08, 2008 11:00 AM To: java-user@lucene.apache.org Subject: Re: Limit of Lucene Michael Siu skrev: What is the limit of Lucene: # of docs per index? Integer.MAX_VALUE Multiple indices joined in a single MultiWhatNot is still limited to that number. If RangeFilter.Bits(), for example, it

RE: Limit of Lucene

2008-05-08 Thread Michael Siu
, May 08, 2008 11:00 AM To: java-user@lucene.apache.org Subject: Re: Limit of Lucene Michael Siu skrev: > What is the limit of Lucene: # of docs per index? Integer.MAX_VALUE Multiple indices joined in a single MultiWhatNot is still limited to that number. > If RangeFilter.Bits(), for e

Re: Limit of Lucene

2008-05-08 Thread Karl Wettin
Michael Siu skrev: What is the limit of Lucene: # of docs per index? Integer.MAX_VALUE Multiple indices joined in a single MultiWhatNot is still limited to that number. If RangeFilter.Bits(), for example, it initializes a bitset to the size of maxDoc from the indexReader. I wonder what

Limit of Lucene

2008-05-08 Thread Michael Siu
What is the limit of Lucene: # of docs per index? If RangeFilter.Bits(), for example, it initializes a bitset to the size of maxDoc from the indexReader. I wonder what happen if the # of docs is huge, say MaxInt (4G in 32bit or 2^63 in 64 bit)?