Re: DiskDocValues vs Lucene42Codec

2013-03-08 Thread David Smiley (@MITRE.org)
Thanks Robert; that's very helpful. - Author: http://www.packtpub.com/apache-solr-3-enterprise-search-server/book -- View this message in context: http://lucene.472066.n3.nabble.com/DiskDocValues-vs-Lucene42Codec-tp4044061p4045935.html Sent from the Lucene - Java Users mailing list archive

Re: DiskDocValues vs Lucene42Codec

2013-03-08 Thread Robert Muir
The underlying data formats are different. For example, because Lucene42Codec will load terms into RAM, it uses an FST. But DiskDV uses a more simplistic storage for the terms thats more suitable for being disk-resident. There are also different compression block sizes and so on in use. you can p