Allow setting optimize_filter_for_hits

master
Lucjan Suski 5 years ago
parent 845a332fd3
commit 9c06fab60f
  1. 6
      src/db_options.rs

@ -414,6 +414,12 @@ impl Options {
}
}
pub fn set_optimize_filters_for_hits(&mut self, optimize_for_hits: bool) {
unsafe {
ffi::rocksdb_options_set_optimize_filters_for_hits(self.inner, optimize_for_hits as c_uchar);
}
}
/// Sets the number of open files that can be used by the DB. You may need to
/// increase this if your database has a large working set. Value `-1` means
/// files opened are always kept open. You can estimate number of files based

Loading…
Cancel
Save