wired
WIP: Collection of embeddable database models for Rust.

Features
- schema-free: use anything that can be serialized with serde/bincode
- portable: every database is persisted with a single memory-mapped binary file
- lightweight: pure Rust implementation without many internal dependencies
- broadly available: works on current stable rust
- efficient: uses a self-managed block storage that recycles memory
- fast: reading and writing should both be a
O(1)
operation
Available Models
- [x] Stack
- [x] Queue
- [ ] Log
- [x] Key-Value
- [ ] Document
- [ ] Graph
- [ ] Tabular
- [ ] Relational
License
MIT