filer: add leveldb3

support dedicated leveldb instance for each bucket
This commit is contained in:
Chris Lu
2021-01-12 02:29:44 -08:00
parent 361043e6c1
commit 629c9962e7
5 changed files with 504 additions and 0 deletions

View File

@@ -89,6 +89,12 @@ buckets_folder = "/buckets"
enabled = true
dir = "./filerldb2" # directory to store level db files
[leveldb3]
# similar to leveldb2.
# each bucket has its own meta store.
enabled = false
dir = "./filerldb3" # directory to store level db files
[rocksdb]
# local on disk, similar to leveldb
# since it is using a C wrapper, you need to install rocksdb and build it by yourself