100,000 indexes and what to do

2006-03-10 Thread Lawrence
Hi all, I was reading one of the posting on concurrency and I reread section 9.1 in Lucene in Action which lead me to this question. I have 100,000 customers and I want to provide them with personal searching for their documents and sometimes to include company documents in that search. 1.

Re: 100,000 indexes and what to do

2006-03-11 Thread Paul Elschot
On Saturday 11 March 2006 08:07, Lawrence wrote: > Hi all, > > > > I was reading one of the posting on concurrency and I reread section 9.1 in Lucene in Action which lead me to this question. I have 100,000 customers and I want to provide them with personal searching for their documents and s

Re: 100,000 indexes and what to do

2006-03-11 Thread Chris Lu
I think it's best to have one small index for each customer, and one large index for company's index. Merging customers' contents with the main index will cost a lot of resources, slowing down systems, while actually not necessary. If indexing is done by batch job, there'll be a delay between cont

Re: 100,000 indexes and what to do

2006-03-12 Thread Otis Gospodnetic
ct: 100,000 indexes and what to do Hi all, I was reading one of the posting on concurrency and I reread section 9.1 in Lucene in Action which lead me to this question. I have 100,000 customers and I want to provide them with personal searching for their documents and sometimes to incl

RE: 100,000 indexes and what to do

2006-03-13 Thread John Powers
M To: java-user@lucene.apache.org Subject: 100,000 indexes and what to do Hi all, I was reading one of the posting on concurrency and I reread section 9.1 in Lucene in Action which lead me to this question. I have 100,000 customers and I want to provide them with personal searching for their documents a