sled icon indicating copy to clipboard operation
sled copied to clipboard

the champagne of beta embedded databases

Results 154 sled issues
Sort by recently updated
recently updated
newest added

I'm running sled in a test pointed at tmp, and with RUST_LOG set to trace, I get the following output: ``` ERROR my_project > Error ... TRACE mio::poll > deregistering...

bug

If `size_of::` < `size_of::`, the remaining bytes would be uninitialised - thus, calling `assume_init` would cause UB, as noted by Miri. Storing the data as `MaybeUninit` and casting to the...

Should Sled be used in new projects? README states: > the 1.0.0 release date is imminent! just putting the final touches on, while performing intensive testing yet there no releases...

See issue #1497. The type parameter `K` on the method `Tree::range` has an implicit `Sized` constraint, but it unnecessarily constrains the flexibility of the API. For example, it's not currently...

The documentation lists the minimum supported Rust version as Rust 1.62, but I have noticed there is no corresponding entry in the `Cargo.toml`, such as: ``` rust-version = "1.62.0" ```...

The signature of this method is currently: ``` pub fn range(&self, range: R) -> Iter where K: AsRef, R: RangeBounds; ``` I am wondering if there is any harm in...

After `Db::open_tree` can I drop `Db` and just use `Tree`? From the code it looks safe, but I couldn't find anything in the documentation. Is this the indented behavior? Would...

I am building an ereader project based on an xtensa board. I would like to use sled as a db, but it doesn't compile with the stable version 0.34.7. xtensa...

#### Use Case: Browser usage via WASM+OPFS/IDB #### Proposed Change: Is it possible to introduce a way to write externally linked VFS like SQLite provides? What I would like is...

feature