From 144cdb8f1654da2a55a1c4921d05fb7981b8264b Mon Sep 17 00:00:00 2001 From: "Peter (Stig) Edwards" Date: Wed, 9 Nov 2016 11:15:22 -0800 Subject: [PATCH] 16384 as e.g .value for compression_max_dict_bytes Summary: Use 16384 as e.g .value for ldb the --compression_max_dict_bytes option. I think 14 was copy and pasted from the options in the lines above. Closes https://github.com/facebook/rocksdb/pull/1483 Differential Revision: D4154393 Pulled By: siying fbshipit-source-id: ef53a69 --- tools/ldb_tool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ldb_tool.cc b/tools/ldb_tool.cc index 7f4f5a9fa..a606af171 100644 --- a/tools/ldb_tool.cc +++ b/tools/ldb_tool.cc @@ -46,7 +46,7 @@ void LDBCommandRunner::PrintHelp(const char* exec_name) { ret.append(" --" + LDBCommand::ARG_COMPRESSION_TYPE + "=\n"); ret.append(" --" + LDBCommand::ARG_COMPRESSION_MAX_DICT_BYTES + - "=\n"); + "=\n"); ret.append(" --" + LDBCommand::ARG_BLOCK_SIZE + "=\n"); ret.append(" --" + LDBCommand::ARG_AUTO_COMPACTION + "=\n"); ret.append(" --" + LDBCommand::ARG_DB_WRITE_BUFFER_SIZE +