Re: Different index per user

2010-04-19 Thread Erick Erickson
If you're thinking about sharding etc, have you looked at SOLR which manages a lot of the hard stuff for you? Best Erick On Mon, Apr 19, 2010 at 1:34 PM, Erdinc Yilmazel wrote: > Thanks Erick, > I don't have any access control constraints. The index won't be exposed to > the users. I am just con

Re: Different index per user

2010-04-19 Thread Erdinc Yilmazel
Thanks Erick, I don't have any access control constraints. The index won't be exposed to the users. I am just concerned about scalability issues. I'll probably use adding a user identifier field approach first and I'll try sharding based on that value when my index grows. Erdinc On Mon, Apr 19, 2

Re: Different index per user

2010-04-18 Thread Erick Erickson
No really better ways that spring to mind. At root you have to somehow know what document is added by each user, and adding a field to the document with this info is quite reasonable, then just tack on an +user: to each query. You can get creative with Lucene Filters. That is, create a Filter for