diff --git a/java/org/rocksdb/Options.java b/java/org/rocksdb/Options.java index 7e06a50c6..dac5aeb4e 100644 --- a/java/org/rocksdb/Options.java +++ b/java/org/rocksdb/Options.java @@ -1312,16 +1312,7 @@ public class Options extends RocksObject { * Compress blocks using the specified compression algorithm. This parameter can be changed dynamically. * - * Typical speeds of kSnappyCompression on an Intel(R) Core(TM)2 2.4GHz: - * ~200-500MB/s compression and ~400-800MB/s decompression. - * - * Note that these speeds are significantly faster than most - * persistent storage speeds, and therefore it is typically never - * worth switching to kNoCompression. Even if the input data is - * incompressible, the kSnappyCompression implementation will - * efficiently detect that and will switch to uncompressed mode. - * - * Default: kSnappyCompression, which gives lightweight but fast compression. + * Default: SNAPPY_COMPRESSION, which gives lightweight but fast compression. * * @return Compression type. */ @@ -1334,16 +1325,7 @@ public class Options extends RocksObject { * Compress blocks using the specified compression algorithm. This parameter can be changed dynamically. * - * Typical speeds of kSnappyCompression on an Intel(R) Core(TM)2 2.4GHz: - * ~200-500MB/s compression and ~400-800MB/s decompression. - * - * Note that these speeds are significantly faster than most - * persistent storage speeds, and therefore it is typically never - * worth switching to kNoCompression. Even if the input data is - * incompressible, the kSnappyCompression implementation will - * efficiently detect that and will switch to uncompressed mode. - * - * Default: kSnappyCompression, which gives lightweight but fast compression. + * Default: SNAPPY_COMPRESSION, which gives lightweight but fast compression. * * @param compressionType Compression Type. * @return the reference to the current option.