Crates.io | timestore |
lib.rs | timestore |
version | 0.0.5 |
source | src |
created_at | 2024-03-02 16:09:57.50915 |
updated_at | 2024-05-01 07:22:16.588487 |
description | Fully serializable on-disk datastore for time data |
homepage | |
repository | |
max_upload_size | |
id | 1159803 |
size | 50,115 |
Fully serializable on-disk datastore for time data. Built on glommio (direct IO and io_uring).
It is a key-multivalue store so each key can have a set number of values.
Has absolutely no locking or synchronization(only uses atomic integers in some places) mechanism because it is written from scratch with ordered and append only workloads.
Iteration is super fast because everything is ordered and written to flat files.
All keys and offsets are kept in memory for reading so this will use a memory budget of num_keys * (values_per_key + 1) * 8
bytes.
Fully crash resistant.