RE: lucene across many clients

2011-01-15 Thread Uwe Schindler
ary 14, 2011 8:25 PM > To: java-user@lucene.apache.org > Subject: Re: lucene across many clients > > That is certainly one way of approaching it. Another is to add a ClientId field > to each document and add a mandatory "AND ClientId=thisclient" > to each query. > &g

Re: lucene across many clients

2011-01-14 Thread Erick Erickson
That is certainly one way of approaching it. Another is to add a ClientId field to each document and add a mandatory "AND ClientId=thisclient" to each query. This will have some effect on relevance since the statistics are gathered over the whole corpus rather than just the individual client. Als

lucene across many clients

2011-01-13 Thread Sean Joyce
Hi Lucene Users, I work on a product with several thousand clients. We use Lucene to index various client data and make the functionality available as part of our product. Currently, each client has its own index for security reasons, but I am wondering if this is the best way to handle the indexi