forked from OpenAtomFoundation/pika
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature:add config API for rocksdb(OpenAtomFoundation#967)
* Add area_block_size and max_write_buffer_number configs * Config related commands can modify mutable options for storage engine
- Loading branch information
Showing
7 changed files
with
181 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule blackwidow
updated
16 files
+13 −0 | include/blackwidow/blackwidow.h | |
+53 −0 | src/blackwidow.cc | |
+75 −0 | src/options_helper.cc | |
+68 −0 | src/options_helper.h | |
+22 −0 | src/redis.cc | |
+3 −0 | src/redis.h | |
+0 −8 | src/redis_hashes.cc | |
+1 −4 | src/redis_hashes.h | |
+0 −15 | src/redis_lists.cc | |
+1 −4 | src/redis_lists.h | |
+0 −9 | src/redis_sets.cc | |
+1 −3 | src/redis_sets.h | |
+0 −8 | src/redis_zsets.cc | |
+1 −4 | src/redis_zsets.h | |
+6 −2 | tests/Makefile | |
+60 −0 | tests/gtest_options.cc |