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
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
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
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
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.