Several of the get() methods return a deserialized object (as opposed to a Vec<u8>) by first getting a byte array out of Rocks, and then using bincode::deserialize() to get the underlying type. However, deserialize() only requires a u8 slice, not an owned Vec<u8>. So, we can use get_pinned_cf() to reference memory owned by Rocks and avoid an unnecessary copy. |
||
---|---|---|
.. | ||
benches | ||
src | ||
tests | ||
.gitignore | ||
Cargo.toml | ||
build.rs |