On Thu, 2012-07-19 at 16:00 +0200, Spadez wrote: > This seems to suggest you have to reindex Solr in its entirety and cant add a > single document at a time, is this right? > > http://stackoverflow.com/questions/11247625/apache-solr-adding-editing-deleting-records-frequently
No. What is says is that you can't change _part_ of a document. What you need to do is send the full document each time it changes. By having a uniqueKey, Solr will do the bookkeeping for you and delete the old document before adding the new one. As for the performance part of the stackoverflow discussion, note that they are talking about 10 million documents and 10,000 updates. That quite far from what you've got. - Toke Eskildsen