heed icon indicating copy to clipboard operation
heed copied to clipboard

A fully typed LMDB wrapper with minimum overhead 🐦

Results 52 heed issues
Sort by recently updated
recently updated
newest added

The `BytesEncode` trait is currently defined as follows: https://github.com/meilisearch/heed/blob/34063834019b41740b684a5aa3ebef8f872579f4/heed-traits/src/lib.rs#L20-L26 There are some issues with this definition: - Unless the encoded type can be trivially transmuted to a slice of bytes...

The LMDB cursor API is quite powerful; something similar should be exposed by `heed`. The `RwIter` API gets close, but is `unsafe` and does not handle seeking to arbitrary keys....