From 4f98b43ba3d5ee469af4429981b01f086bf6102a Mon Sep 17 00:00:00 2001 From: Yun Tang Date: Tue, 6 Aug 2019 09:10:32 -0700 Subject: [PATCH] Correct the default write buffer size of java doc (#5670) Summary: The actual value of default write buffer size within `rocksdb/include/rocksdb/options.h` is 64 MB, we should correct this value in java doc. Pull Request resolved: https://github.com/facebook/rocksdb/pull/5670 Differential Revision: D16668815 Pulled By: maysamyabandeh fbshipit-source-id: cc3a981c9f1c2cd4a8392b0ed5f1fd0a2d729afb --- .../java/org/rocksdb/MutableColumnFamilyOptionsInterface.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/main/java/org/rocksdb/MutableColumnFamilyOptionsInterface.java b/java/src/main/java/org/rocksdb/MutableColumnFamilyOptionsInterface.java index 4f4749646..4ae96daaf 100644 --- a/java/src/main/java/org/rocksdb/MutableColumnFamilyOptionsInterface.java +++ b/java/src/main/java/org/rocksdb/MutableColumnFamilyOptionsInterface.java @@ -21,7 +21,7 @@ public interface MutableColumnFamilyOptionsInterface * Also, a larger write buffer will result in a longer recovery time * the next time the database is opened. * - * Default: 4MB + * Default: 64MB * @param writeBufferSize the size of write buffer. * @return the instance of the current object. * @throws java.lang.IllegalArgumentException thrown on 32-Bit platforms -- GitLab