```rust cf_opts.set_compression_type(rocksdb::DBCompressionType::Lz4); ``` If we're IO-bound, reading less bytes from disk can be faster than reading uncompressed. LZ4 decompression is ~4GB/s.
If we're IO-bound, reading less bytes from disk can be faster than reading uncompressed. LZ4 decompression is ~4GB/s.