--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
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
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
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
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