What Rust crates best approximates the following.
Similar to SQLITE, with following differences:
- pure Rust
- in Memory, no disk store
So I want something that:
- is a relational store (not key value store)
- supports transactions
- pure Rust
- purely in memory, no on disk (and thus, expect pure memory performance)
It's fine if the language is datalog instead of SQL.
EDIT: (posted after @H2CO3 's suggestion): I also need this crate to support a REPL.