ledb icon indicating copy to clipboard operation
ledb copied to clipboard

Lightweight embedded database

Results 4 ledb issues
Sort by recently updated
recently updated
newest added

I'd like to initialize ledb with no_lock lmdb option, because I'm maintaining locks in my code. Is there an option to set this flag in Options struct? Thanks

If/when the actix-web dependency is updated to v3, the dependency in Cargo.toml should ideally be: ```diff - actix-web = "3.0.2" + actix-web = { version = "3.0.2", default-features = false...

Currently query macro implementation based on Rust's `macro_rules`. This is terrible due to several reasons. Mainly because the code relatively hard to understand, modification and debugging. Secondly the errors in...

An attempt to index field values of zero-length causes LMDB error. It because LMDB not support for that key length. So currently zero-length values doesn't indexing, i.e. it is treated...