Am 17.11.2011 08:46, schrieb Kashif Khan:
Please advise how we can reindex SOLR with having fields stored="false". we can not reindex data from the beginning just want to read and write indexes from the SOLRJ only. Please advise a solution. I know we can do it using lucene classes using indexreader and indexwriter but want to index all fields
This is not possible. At least not when the index is modified in any way (stemmed, lowercased, tokenized, etc.).
The original data is not saved when "stored" is false. You'll need your original source data to reindex then.
-Kuli