forked from rust-rocksdb/rust-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
titan: lazy load blob value and reduce mutex (#778)
* lazy load blob value Signed-off-by: Connor1996 <[email protected]>
- Loading branch information
1 parent
8f0dbf5
commit d877018
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule titan
updated
12 files
+5 −5 | CMakeLists.txt | |
+6 −0 | include/titan/options.h | |
+7 −3 | src/blob_file_set.cc | |
+3 −0 | src/blob_gc_job_test.cc | |
+26 −12 | src/blob_gc_picker.cc | |
+26 −0 | src/blob_gc_picker_test.cc | |
+51 −24 | src/db_impl.cc | |
+41 −0 | src/db_impl.h | |
+53 −58 | src/db_iter.h | |
+4 −4 | src/titan_checkpoint_test.cc | |
+42 −19 | src/titan_db_test.cc | |
+4 −10 | tools/db_bench_tool.cc |