Re: Solr partial update

2017-02-09 Thread Mike Thomsen
Set the fl parameter equal to the fields you want and then query for id:(SOME_ID OR SOME_ID OR SOME_ID) On Thu, Feb 9, 2017 at 5:37 AM, Midas A wrote: > Hi, > > i want solr doc partially if unique id exist else we donot want to do any > thing . > > how can i achieve this . > > Regards, > Midas >

Solr partial update

2017-02-09 Thread Midas A
Hi, i want solr doc partially if unique id exist else we donot want to do any thing . how can i achieve this . Regards, Midas

Re: Solr Partial Update query

2017-01-30 Thread Alexandre Rafalovitch
Would SOLR-9918's SkipExistingDocumentsProcessorFactory help? https://issues.apache.org/jira/browse/SOLR-9918 It's been released with 6.4, just recently. Regards, Alex. http://www.solr-start.com/ - Resources for Solr users, new and experienced On 30 January 2017 at 09:35, kshitij tyagi

Solr Partial Update query

2017-01-30 Thread kshitij tyagi
Hi, I want to update document in solr partial. The issue I am facing is that I want to update only those documents in solr that are already present. I dont want to query solr to check if documnet is present or not, i just want to post updates to existing documents. How can I achieve this. Help a