Re: Multiple Cores Vs. Single Core for the following use case

2010-01-28 Thread Matthieu Labour
Thanks a lot everybody for the responses ... I am going to do some practical/empirical testing and will report matt --- On Wed, 1/27/10, Tom Hill wrote: From: Tom Hill Subject: Re: Multiple Cores Vs. Single Core for the following use case To: solr-user@lucene.apache.org Date: Wednesday

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Tom Hill
arch for "Paris" > ? > > matt > > > > --- On Wed, 1/27/10, didier deshommes wrote: > > > > From: didier deshommes > > Subject: Re: Multiple Cores Vs. Single Core for the following use case > > To: solr-user@lucene.apache.org > > Date: Wed

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Amit Nithian
fast as if I would getCore(userId) > -- provided that the core is already open -- and then search for "Paris" ? > matt > > --- On Wed, 1/27/10, didier deshommes wrote: > > From: didier deshommes > Subject: Re: Multiple Cores Vs. Single Core for the following use

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Matthieu Labour
to apply the filter to userid first, use filter queries (http://wiki.apache.org/solr/CommonQueryParameters#fq). This will filter by userid first then search for "Paris". didier > > > > > > --- On Wed, 1/27/10, Marc Sturlese wrote: > > From: Marc Sturlese

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Toby Cole
Sturlese wrote: From: Marc Sturlese Subject: Re: Multiple Cores Vs. Single Core for the following use case To: solr-user@lucene.apache.org Date: Wednesday, January 27, 2010, 2:22 AM In case you are going to use core per user take a look to this patch: http://wiki.apache.org/solr/LotsOfCores Trey-13

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread didier deshommes
s will filter by userid first then search for "Paris". didier > > > > > > --- On Wed, 1/27/10, Marc Sturlese wrote: > > From: Marc Sturlese > Subject: Re: Multiple Cores Vs. Single Core for the following use case > To: solr-user@lucene.apache.org > Dat

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Matthieu Labour
If this is the case, then I am better off having a specific index for the user="123" because this will be faster --- On Wed, 1/27/10, Marc Sturlese wrote: From: Marc Sturlese Subject: Re: Multiple Cores Vs. Single Core for the following use case To: solr-user@lucene.apache.o

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-27 Thread Marc Sturlese
In case you are going to use core per user take a look to this patch: http://wiki.apache.org/solr/LotsOfCores Trey-13 wrote: > > Hi Matt, > > In most cases you are going to be better off going with the userid method > unless you have a very small number of users and a very large number of > doc

Re: Multiple Cores Vs. Single Core for the following use case

2010-01-26 Thread Trey
Hi Matt, In most cases you are going to be better off going with the userid method unless you have a very small number of users and a very large number of docs/user. The userid method will likely be much easier to manage, as you won't have to spin up a new core every time you add a new user. I wo