10 releases

1.0.0-rc.5 Feb 9, 2024
0.8.1 Jan 29, 2021
0.2.7 Oct 12, 2020
0.2.0 Jul 15, 2020
0.0.5 Sep 2, 2019

#1743 in Magic Beans

Download history 9/week @ 2023-12-22 2/week @ 2023-12-29 2/week @ 2024-01-05 11/week @ 2024-01-12 2/week @ 2024-01-19 2/week @ 2024-02-02 35/week @ 2024-02-09 25/week @ 2024-02-16 36/week @ 2024-02-23 28/week @ 2024-03-01 27/week @ 2024-03-08 24/week @ 2024-03-15 22/week @ 2024-03-22 50/week @ 2024-03-29 45/week @ 2024-04-05

143 downloads per month
Used in 10 crates (7 directly)

BSD-3-Clause

70KB
1K SLoC

Tari Storage

This crate is part of the Tari Cryptocurrency project.

An abstraction layer for persistent key-value storage. The Tari domain layer classes should only make use of these traits and objects and let the underlying implementations handle the details.

DataStore

Provides a general CRUD behaviour of Key-Value Store implementations. Datastore is agnostic of the underlying implementation.

LMDB

Currently, Tari supports LMDB for local disk persistence.

Use LMDBBuilder to open/create a new database.

# use tari_storage::lmdb::LMDBBuilder;
let mut store = LMDBBuilder::new()
    .set_path("/tmp/")
    .set_mapsize(500)
    .add_database("db1")
    .add_database("db2")
    .build()
    .unwrap();

Dependencies

~1.6–2.3MB
~50K SLoC