shodh-redb 0.2.0

Multi-modal embedded database - vectors, blobs, TTL, merge operators, and causal tracking built on ACID B-trees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod reader;
pub mod types;
pub mod writer;

pub use reader::BlobReader;
pub(crate) use types::BlobDedupConfig;
pub use types::{
    BlobCompactionReport, BlobId, BlobInput, BlobMeta, BlobRef, BlobStats, CausalEdge,
    CausalEdgeKey, CausalLink, CausalPath, ContentType, DedupStats, DedupVal, MAX_TAGS_PER_BLOB,
    NamespaceKey, NamespaceVal, RelationType, Sha256Key, StoreOptions, TagKey, TemporalKey,
};
pub use writer::BlobWriter;