On Tue, Oct 25, 2016 at 6:41 PM, Brent <brent.pear...@gmail.com> wrote: > I know that in the sample config sets, the _version_ field is indexed and not > stored, like so: > > <field name="_version_" type="long" indexed="true" stored="false"/> > > Is there any reason it needs to be indexed?
It may depend on your solr version, but the starting configsets currently only have docvalues: ./solr/server/solr/configsets/basic_configs/conf/managed-schema: <field name="_version_" type="long" indexed="false" stored="false"/> -Yonik