TinyDB
NOTE: This project is not affiliated with the Python TinyDB, accidental naming error from when this project was started. See renaming for updates
TinyDB or tinydb
is a small-footprint, superfast database designed to be used in-memory and easily dumped/retrieved from a file when it's time to save ✨
This database aims to provide an easy frontend to an efficiant in-memory database (that can also be dumped to a file). It purposefully disallows duplicate items to be sorted due to constraints with hash tables.
Example 🚀
A simple example of adding a structure then querying for it:
use ;
use Database;
Installation
Simply add the following to your Cargo.toml
file:
[]
= "1"