10 releases (4 breaking)

0.5.1 Jun 30, 2020
0.5.0 Apr 26, 2020
0.4.5 Apr 21, 2020
0.3.0 Apr 15, 2020
0.1.0 Apr 13, 2020

#166 in Database implementations

Download history 1/week @ 2024-02-23 1/week @ 2024-03-01 104/week @ 2024-03-29

104 downloads per month

MIT license

42KB
807 lines

wired

WIP: Collection of embeddable database models for Rust.

Documentation Crate Build

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

Work in Progress

This is a personal learning project and existing APIs may change any time. Also, the format of the binary encoded files might not be compatible between versions. Once everything is stable I will release a version 1.0 and backwards compatibility will be guaranteed.

In the mean time, I would love to get feedback on how the databases work in real world use cases and where some bugs are lurking. This will stabilize the lib faster and I might learn more from your feedback!

Available Models

  • Stack
  • Queue
  • Log
  • Key-Value
  • Document
  • Graph
  • Tabular
  • Relational

License

MIT

Dependencies

~2–13MB
~150K SLoC