Thanks Shawn, I didn't realize docValues were enabled by default now. That's very convenient and probably makes a lot of the schemas we've been making excessively verbose.
This is on 6.3.0. Do you know what the first version was that they added the docValues by default for non-Text field? However, that shouldn't apply to this since I'm concerned with a non-stored TextField without docValues enabled. Best, Chris On Wed, Apr 26, 2017 at 3:36 PM Shawn Heisey <apa...@elyograg.org> wrote: > On 4/25/2017 1:40 PM, Chris Ulicny wrote: > > Hello all, > > > > Suppose I have the following fields in a document and populate all 4 > fields > > for every document. > > > > id: uniqueKey, indexed and stored > > integer_field: indexed and stored > > text_field: indexed and stored > > othertext_field: indexed but not stored > > > > No default values, multivalues, docvalues, copyfields, or any other > > properties set. > > You didn't indicate the Solr version. In recent Solr versions, most > field classes other than TextField have docValues enabled by default, > even if the config is not mentioned on the field, and in those versions, > docValues will take the place of stored if stored is false. > > Thanks, > Shawn > >