[][src]Crate tinydb

About

A small-footprint database implamentation, originally designed for the Zeno code editor. This database does not accept duplicates and will not save a second identical item.

Under the surface, tinydb uses a HashSet-based table that works in a similar fashion to SQL-like/Grid based databases.

Disclaimer

This project is not intended to be used inside of any critical systems due to the nature of dumping/recovery. If you are using this crate as a temporary and in-memory only database, it should preform at a reasonable speed (as it uses HashSet underneith).

Structs

Database

The primary database structure, allowing storage of a given generic.

Enums

DatabaseError

Database error enum