From efc94ceb27d5e12b25734679730302ff6cfc55be Mon Sep 17 00:00:00 2001 From: fyrz Date: Sun, 7 Dec 2014 22:19:46 +0100 Subject: [PATCH] [RocksJava] Incorporated changes for D29283 --- java/org/rocksdb/RocksDB.java | 102 ++++++++++++---------------------- 1 file changed, 36 insertions(+), 66 deletions(-) diff --git a/java/org/rocksdb/RocksDB.java b/java/org/rocksdb/RocksDB.java index 021ed80b0..04a93eacd 100644 --- a/java/org/rocksdb/RocksDB.java +++ b/java/org/rocksdb/RocksDB.java @@ -1252,13 +1252,10 @@ public class RocksDB extends RocksObject { } /** - *

Full compaction of the underlying storage using key - * range mode.

- *

Note: After the entire database is compacted, - * all data are pushed down to the last level containing any data. - * If the total data size after compaction is reduced, that level - * might not be appropriate for hosting all the files. - *

+ *

Range compaction of database.

+ *

Note: After the database has been compacted, + * all data will have been pushed down to the last level containing + * any data.

* *

See also

*