From c9cfb88256c03d3d8002dc2f8374591930fb4f03 Mon Sep 17 00:00:00 2001 From: Ankit Gupta Date: Mon, 7 Jul 2014 12:21:15 -0700 Subject: [PATCH] Remove doc from options class --- java/org/rocksdb/Options.java | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) 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.