|
|
@ -372,6 +372,19 @@ impl Options { |
|
|
|
rocksdb_ffi::rocksdb_options_set_wal_recovery_mode(self.inner, mode); |
|
|
|
rocksdb_ffi::rocksdb_options_set_wal_recovery_mode(self.inner, mode); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub fn enable_statistics(&mut self) { |
|
|
|
|
|
|
|
unsafe { |
|
|
|
|
|
|
|
rocksdb_ffi::rocksdb_options_enable_statistics(self.inner); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub fn set_stats_dump_period_sec(&mut self, period: usize) { |
|
|
|
|
|
|
|
unsafe { |
|
|
|
|
|
|
|
rocksdb_ffi::rocksdb_options_set_stats_dump_period_sec(self.inner, |
|
|
|
|
|
|
|
period); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
impl Default for Options { |
|
|
|
impl Default for Options { |
|
|
@ -429,4 +442,11 @@ mod tests { |
|
|
|
let size = 20 * 1024 * 1024; |
|
|
|
let size = 20 * 1024 * 1024; |
|
|
|
opts.set_max_manifest_file_size(size) |
|
|
|
opts.set_max_manifest_file_size(size) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn test_enable_statistics() { |
|
|
|
|
|
|
|
let mut opts = Options::default(); |
|
|
|
|
|
|
|
opts.enable_statistics(); |
|
|
|
|
|
|
|
opts.set_stats_dump_period_sec(60); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|