sled
sled copied to clipboard
the champagne of beta embedded databases
Hey, I've seen that sled seems to have a lot of documentation which isn't directly related to rust code in the `doc` module. I think that's pretty unusual, and I...
1. expected result Inserting a value into the db should persist to disk 2. actual result Value is not persisted and does not show up in queries on restarting process...
Hello, thank you for your work on sled, it looks really interesting. I figured I'd try sled as a replacement for rocksdb in openethereum client for storing blockchain data. Here...
Hi, I've been using sled for a little while now and it has been absolutely great - thanks! I've run into an issue which I believe would be a feature...
This hangs forever: ```rust fn main() { let db1 = sled::open("db1.sled").unwrap(); let db2 = sled::open("db2.sled").unwrap(); db1.transaction(|_| -> Result { db2.get([]).unwrap(); Ok(()) }).unwrap(); } ``` Although it is possible to do...
#### Use Case: Use `Subscriber` as if it were a Stream of Events instead of a Future of a single event multiple times. As the documentation for Future and Stream...
1. expected result Sled works reliably 1. actual result sometimes a request to my program takes a very long time, over 2 minutes. It finishes shortly after the panic below...
I received a segfault after about 3 hours of heavy concurrent inserts. The workload was 8 threads reading parquet files using the parquet crate and doing inserts into the default...
fuzzy snapshots may be written in a streaming fashion to reduce memory overhead. When configured with a small node cache size of 1mb and bulk inserting 10 million items sequentially...