[DOCS] Removed outdated new/deprecated version notices

This commit is contained in:
Clinton Gormley 2013-09-03 21:27:49 +02:00
parent d5a47e597d
commit 393c28bee4
49 changed files with 83 additions and 524 deletions

View file

@ -21,30 +21,6 @@ example:
}
--------------------------------------------------
[float]
==== Compression
*From version 0.90 onwards, all stored fields (including `_source`) are
always compressed.*
For versions before 0.90:
The source field can be compressed (LZF) when stored in the index. This
can greatly reduce the index size, as well as possibly improving
performance (when decompression overhead is better than loading a bigger
source from disk). The code takes special care to decompress the source
only when needed, for example decompressing it directly into the REST
stream of a result.
In order to enable compression, the `compress` option should be set to
`true`. By default it is set to `false`. Note, this can be changed on an
existing index, as a mix of compressed and uncompressed sources is
supported.
Moreover, a `compress_threshold` can be set to control when the source
will be compressed. It accepts a byte size value (for example `100b`,
`10kb`). Note, `compress` should be set to `true`.
[float]
==== Includes / Excludes