Skip to content
Snippets Groups Projects
Commit b600d337 authored by hofmockel's avatar hofmockel
Browse files

Get access to the dedicated logger of a DB

parent 43a69973
No related branches found
No related tags found
No related merge requests found
...@@ -101,6 +101,7 @@ cdef extern from "rocksdb/db.h" namespace "rocksdb": ...@@ -101,6 +101,7 @@ cdef extern from "rocksdb/db.h" namespace "rocksdb":
int MaxMemCompactionLevel() nogil except+ int MaxMemCompactionLevel() nogil except+
int Level0StopWriteTrigger() nogil except+ int Level0StopWriteTrigger() nogil except+
const string& GetName() nogil except+ const string& GetName() nogil except+
const options.Options& GetOptions() nogil except+
Status Flush(const options.FlushOptions&) nogil except+ Status Flush(const options.FlushOptions&) nogil except+
Status DisableFileDeletions() nogil except+ Status DisableFileDeletions() nogil except+
Status EnableFileDeletions() nogil except+ Status EnableFileDeletions() nogil except+
......
...@@ -33,7 +33,7 @@ cdef extern from "rocksdb/options.h" namespace "rocksdb": ...@@ -33,7 +33,7 @@ cdef extern from "rocksdb/options.h" namespace "rocksdb":
cpp_bool error_if_exists cpp_bool error_if_exists
cpp_bool paranoid_checks cpp_bool paranoid_checks
# TODO: env # TODO: env
# TODO: info_log shared_ptr[Logger] info_log
size_t write_buffer_size size_t write_buffer_size
int max_write_buffer_number int max_write_buffer_number
int min_write_buffer_number_to_merge int min_write_buffer_number_to_merge
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment