mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-03-14 18:55:37 +00:00
remove zlib as a default rocksdb compression option
Signed-off-by: June Clementine Strawberry <june@3.dog>
This commit is contained in:
parent
17b625a85b
commit
f4c51cd405
3 changed files with 3 additions and 3 deletions
|
@ -821,7 +821,7 @@
|
|||
|
||||
# Type of RocksDB database compression to use.
|
||||
#
|
||||
# Available options are "zstd", "zlib", "bz2", "lz4", or "none".
|
||||
# Available options are "zstd", "bz2", "lz4", or "none".
|
||||
#
|
||||
# It is best to use ZSTD as an overall good balance between
|
||||
# speed/performance, storage, IO amplification, and CPU usage. For more
|
||||
|
|
2
deps/rust-rocksdb/Cargo.toml
vendored
2
deps/rust-rocksdb/Cargo.toml
vendored
|
@ -10,7 +10,7 @@ repository.workspace = true
|
|||
version = "0.0.1"
|
||||
|
||||
[features]
|
||||
default = ["lz4", "zstd", "zlib", "bzip2"]
|
||||
default = ["lz4", "zstd", "bzip2"]
|
||||
jemalloc = ["rust-rocksdb/jemalloc"]
|
||||
io-uring = ["rust-rocksdb/io-uring"]
|
||||
numa = ["rust-rocksdb/numa"] # unused by rocksdb for now
|
||||
|
|
|
@ -975,7 +975,7 @@ pub struct Config {
|
|||
|
||||
/// Type of RocksDB database compression to use.
|
||||
///
|
||||
/// Available options are "zstd", "zlib", "bz2", "lz4", or "none".
|
||||
/// Available options are "zstd", "bz2", "lz4", or "none".
|
||||
///
|
||||
/// It is best to use ZSTD as an overall good balance between
|
||||
/// speed/performance, storage, IO amplification, and CPU usage. For more
|
||||
|
|
Loading…
Add table
Reference in a new issue