Am 13.07.2011 14:05, schrieb Gabriele Kahlout: > this is what i was expecting. Otherwise updating a field of a document that > has an unstored but indexed field is impossible (without losing the unstored > but indexed field. I call this updating a field of a document AND > deleting/updating all its unstored but indexed fields).
Not necessarily. The usual use case is that you have some kind of existing data source from where you fill your Solr index. When you want to update field of a document, then you simply re-index from that source. There's no need to fetch data from Solr before. Otherwise, if you really don't have such an existing data source because a horde of typewriting monkeys filled your Solr index, then you should better declare all your fields as stored. Otherwise you'll never have a chance to get that data back. Greeting, Kuli