marvin-j97 / rust-storage-bench

Benchmarking Rust storage engines
https://marvin-j97.github.io/rust-storage-bench/
MIT License
12 stars 0 forks source link

Add SQLite? #5

Open ChrisJefferson opened 1 week ago

ChrisJefferson commented 1 week ago

While SQLite isn't officially a key-value store, it is often used as one, and has many advantages (mainly quality of code and long-term support), so it might be interesting to compare against a basic single table key value store, in rsqlite.

I have one lying around if you want the code (my code may be very inefficient, it's good enough for me :) )

marvin-j97 commented 1 week ago

Contributions are always welcome

(I had rustqlite in here at some point, but I removed it because having to communicate through the SQL layer was a bit of a pain sometimes)