The data will be stored 100 times in your example, independently for each document, albeit compressed.
Hmmm, doing that would certainly reduce the disk space requirements, but it'd also complicate the document read process. Instead of a single contiguous read from disk per document, there'd be multiple seeks per document to find all the pieces. TANSTAAFL. Best, Erick On Fri, Jul 18, 2014 at 4:56 AM, Alexandre Rafalovitch <arafa...@gmail.com> wrote: > Hello, > > Say I have 100 documents with the same large field value. Stored and > indexed. > > I know the indexed tokens are stored only once with posting lists. But what > about original stored values? Do I get 100 copies of those? Or is Solr > smarter that that? > > Regards, > Alex >