lmdb-zero icon indicating copy to clipboard operation
lmdb-zero copied to clipboard

Near-zero-cost, unabstracted Rust wrapper for LMDB.

Results 7 lmdb-zero issues
Sort by recently updated
recently updated
newest added

With the following minimal example for creating a test entry in an LMDB database: ```rust use lmdb_zero as lmdb; fn main() { let path = "test_mdb"; std::fs::create_dir_all(path).unwrap(); let env =...

I'm using `lmdb-zero = "0.4.4"`. I've tried to compile and run it on Windows 10, however when trying to open the env on the sample file, when using following code:...

```rust #[test] fn lmdb_crash() { use std::sync::Arc; let dir = tempfile::tempdir().unwrap(); let env = Arc::new(unsafe { let mut builder = lmdb_zero::EnvBuilder::new().unwrap(); builder.set_maxdbs(10).unwrap(); builder.open(dir.path().to_str().unwrap(), lmdb_zero::open::NOTLS, 0o600).unwrap() }); let txn = lmdb_zero::ReadTransaction::new(env.clone()).unwrap();...

Hi man, Is there anyway you provide a working example of concurrent reading? i'm confused about which is the best way to go about it. Thanks again

Hi, I'm sorry, I've read your whole doc but I don't understand the exact behavior regarding Updates. When I update data using: lmdb_zero::put Will it insert them by default in...

I need to track final dropping of `Database` object in `Arc`. In particular I need delete databases (i.e. by calling `Database::delete()`) which was removed by the application when all references...