Re: Update multiple documents in one query

2013-06-13 Thread Jack Krupansky
--Original Message- From: Siamak Kolahi Sent: Thursday, June 13, 2013 4:48 PM To: solr-user@lucene.apache.org Subject: Re: Update multiple documents in one query Thanks Jack. I currently have written down a script which does that - effectively retrieving all those documents and updating them

Re: Update multiple documents in one query

2013-06-13 Thread Siamak Kolahi
Thanks Jack. I currently have written down a script which does that - effectively retrieving all those documents and updating them one by one, atomically. But I was hoping Solr does a more efficient implementation internally. Is there any thinking about implementing such feature in future? Siama

Re: Update multiple documents in one query

2013-06-13 Thread Jack Krupansky
That is not a feature available in Solr. You can update a full document or do a partial update of a single document based on its unique key, and you can update a batch of documents using those two techniques. You probably could implement custom code to do it. Maybe even using a script update

Re: Update multiple documents

2012-12-11 Thread Dikchant Sahi
My intention is to allow search on person names in the second index also. If we use personId in the second index, is there a way to achieve that? Yes, we are looking for join kind of feature. Thanks! On Wed, Dec 12, 2012 at 8:31 AM, Otis Gospodnetic < otis.gospodne...@gmail.com> wrote: > But is

Re: Update multiple documents

2012-12-11 Thread Otis Gospodnetic
But is that the best approach? If you use personIds in your second index then you don't have to did that. Maybe you are after joins in Solr? Otis -- SOLR Performance Monitoring - http://sematext.com/spm On Dec 11, 2012 1:21 PM, "Dikchant Sahi" wrote: > Hi, > > We have two set of related indexes