Using Lucene to model ownership of documents

2016-06-15 Thread Geebee Coder
Hi there, I would like to use Lucene to solve the following problem: 1.We have about 100k customers and we have 25 millions of documents. 2.When a customer performs a text search on the document space, we want to return only documents that the customer has access to. 3.The # of documents a custo

Re: Using Lucene to model ownership of documents

2016-06-16 Thread Geebee Coder
itely go for b). The index will of course be larger for every > > extra bit of data you store but it doesn't sound like this would make > much > > difference. Likewise for speed of indexing. > > > > > > -- > > Ian. > > > > > > On Wed,

Re: Using Lucene to model ownership of documents

2016-06-22 Thread Geebee Coder
f you have a need for scaling > your system. Which imply you can’t solve problem on the single box. > > So, if there is no need for scaling, I’d go with b because of simplicity. > > > On Jun 15, 2016, at 23:25, Geebee Coder wrote: > > > > Hi there, > > I