Hi, 1. I was doing some exploration and wanted to know if the <uniqueKey>id</uniqueKey> field is always stored even when I set stored = false.
*<field name="id" type="string" indexed="true" required="true" multiValued="false" stored="false"/>* 2. Also, even though I removed dynamic fields, anything tagged *_id is getting stored despite marking that field stored = false. *<field name="some_id" type="string" multiValued="false" indexed="true" required="true" stored="false"/>* Where string is defined as: *<fieldType name="string" class="solr.StrField" sortMissingLast="true" docValues="true" />* Regards, Sid.