Reputation: 11
I m using apache solr , I want to do partial update of document in solr
I am new to Apachesolr and i m using windows operating system please help me and give suitable example for this
we need to update a single field in the index and we don’t want to send the whole document. Lets say, that we need to update product price, which is updated a few times a day. We don’t want to index the whole document again and again,
Upvotes: 1
Views: 630
Reputation: 603
Also:
Look at http://solr.pl/en/2012/07/09/solr-4-0-partial-documents-update/
Interestingly the site above uses the same product price example that you are trying to solve.
Note that your entire document(all fields) needs to be stored for this to happen.
Upvotes: 2