optimize get w/ zero-copy ref handle

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-02 05:56:10 +00:00
parent 0522fe7d92
commit ee64fb149c
11 changed files with 46 additions and 16 deletions

View file

@ -1,6 +1,7 @@
mod cork;
mod database;
mod engine;
mod handle;
mod iter;
mod map;
pub mod maps;
@ -13,6 +14,7 @@ extern crate rust_rocksdb as rocksdb;
pub use database::Database;
pub(crate) use engine::Engine;
pub use handle::Handle;
pub use iter::Iter;
pub use map::Map;
pub(crate) use util::{or_else, result};