Reputation: 1
is there any possibility to update a value of a Solr-Field without reindexing the whole document?
Upvotes: 0
Views: 165
Reputation: 22555
This functionality is available in the Solr version 4.0. That version is still in Beta, but will most likely be released before the end of the year. Please see the post - Solr 4.0: Partial documents update for more details on how this works.
Upvotes: 1
Reputation: 52779
Nope.
You need to index the document again with all the fields.
Solr will delete and insert the document again.
There is nice talk about it you may want to hear.
Upvotes: 1
Reputation: 9472
When you want to change a single field of a document you will have to reindex the whole document, as solr does not support updating of a field only.
Upvotes: 0