On 7/2/2013 12:22 PM, Ali, Saqib wrote: > Newbie question: > > We have the following fields defined in the schema: > > <field name="content" type="text_general" indexed="true" stored="false"/> > <field name="teaser" type="text_general" indexed="false" stored="true"/> > <copyField source="content" dest="teaser" maxChars="80"/> > > the content is field is about 500KB data. > > My question is whether Solr stores the entire contents of the that 500KB > content field? > > We want to minimize the stored data in the Solr index, that is why we added > the copyField teaser.
With that config, the entire 500KB will not be _stored_ .. but it will affect the index size because you are indexing it. Exactly what degree that will be depends on the definition of the text_general type. Thanks, Shawn