Re: How to manage different indexes for different users

2010-10-11 Thread Tharindu Mathew
Great! Just what I need. Thanks for all the help. I'll let you know how it goes. On Mon, Oct 11, 2010 at 11:37 PM, Markus Jelsma wrote: > Well, set the user ID for each document and use a filter query to filter > only on field:. > > On Mon, 11 Oct 2010 23:25:29 +0530, Tharindu Mathew > wrote: >

Re: How to manage different indexes for different users

2010-10-11 Thread Markus Jelsma
Well, set the user ID for each document and use a filter query to filter only on field:. On Mon, 11 Oct 2010 23:25:29 +0530, Tharindu Mathew wrote: On Mon, Oct 11, 2010 at 10:48 PM, Markus Jelsma wrote: Then you probably read on how to create [1] the new core. Keep in mind, you might need t

Re: How to manage different indexes for different users

2010-10-11 Thread Tharindu Mathew
On Mon, Oct 11, 2010 at 10:48 PM, Markus Jelsma wrote: > Then you probably read on how to create [1] the new core. Keep in mind, you > might need to do some additional local scripting to create a new instance > dir. > > Do the user share the same schema? If so, you'd be better of keeping a > singl

Re: How to manage different indexes for different users

2010-10-11 Thread Markus Jelsma
Then you probably read on how to create [1] the new core. Keep in mind, you might need to do some additional local scripting to create a new instance dir. Do the user share the same schema? If so, you'd be better of keeping a single index and preventing the users from querying others. [1]: h

Re: How to manage different indexes for different users

2010-10-11 Thread Tharindu Mathew
Thanks Li. I checked out multi cores documentation. How do I dynamically create new cores as new users are added. Is that possible? On Mon, Oct 11, 2010 at 2:31 PM, Li Li wrote: > will one user search other user's index? > if not, you can use multi cores. > > 2010/10/11 Tharindu Mathew : > > Hi

Re: How to manage different indexes for different users

2010-10-11 Thread Li Li
will one user search other user's index? if not, you can use multi cores. 2010/10/11 Tharindu Mathew : > Hi everyone, > > I'm using solr to integrate search into my web app. > > I have a bunch of users who would have to be given their own individual > indexes. > > I'm wondering whether I'd have to

How to manage different indexes for different users

2010-10-11 Thread Tharindu Mathew
Hi everyone, I'm using solr to integrate search into my web app. I have a bunch of users who would have to be given their own individual indexes. I'm wondering whether I'd have to append their user ID as I index a file. I'm not sure which approach to follow. Is there a sample or a doc I can read