tycho-storage 0.3.7

Tycho storage context.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use tycho_storage_traits::{StoredValue, StoredValueBuffer};

pub use self::context::TableContext;
pub use self::models::{InstanceId, StateVersionProvider};
pub use self::tables::{
    DEFAULT_MIN_BLOB_SIZE, default_block_based_table_factory, optimize_for_level_compaction,
    optimize_for_point_lookup, with_blob_db, zstd_block_based_table_factory,
};
pub use self::traits::{ApplyMigrations, Migrations, NamedTables, WeeDbExt, WithMigrations};

pub mod refcount;

mod context;
mod models;
mod tables;
mod traits;