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

First of all, thanks a lot for sled! It is such a nice library. #### Use Case: Consider different entities from which we can assume that they are distinct on...

feature

I have 2 sled DBs. I want to dump data from one and restore to another (appending new data, not wiping the existing), how do I do this?

feature

https://github.com/spacejam/sled/blob/main/src/pagecache/heap.rs#L93-L94 ``` // find the power of 2 that is at least 64k let normalized_size = std::cmp::max(MIN_SZ, size.next_power_of_two()); ``` `MIN_SZ = 32 * 1024` maybe the comments should `at least...

I'm writing migrations (which is why I posted this [feature request for tree renames](https://github.com/spacejam/sled/issues/1405)) but I can't get `transaction` to compile when working on multiple `Tree`s. Start a new `sled`...

as mentioned [here](https://github.com/spacejam/sled/pull/928#issuecomment-877737763), BTRFS uses functionality that is incompatible w/ sync_file_range when running in its default mode, but CoW can be disabled using `chattr +C ` on these systems, OR...

correctness

During the implementation of my service, I encountered a problem related to deserialization of custom types, which could represent tree names. If you will try on code bellow, it will...

I have an application making hundreds of `get` calls and dozens of `insert` calls a second over 8 concurrent threads. Sled consistently deadlocks after several minutes of this. I wasn't...

bug

Updates the requirements on [zstd](https://github.com/gyscos/zstd-rs) to permit the latest version. Commits 94f79b0 Bump versions 3580b14 Avoid exact version of zstd-sys 4051a08 Avoid exact version of zstd-safe (#148) 614f5d9 CI: Only...

dependencies

I get crashes on trying to open a big Sled database on small VPS. Does using 500 MB of RSS after opening gigabyte database indicate a bug in Sled or...

The database shouldn't be world readable.