shodh-redb 0.5.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
13
pub mod reader;
pub mod types;
pub mod writer;

pub use reader::BlobReader;
pub(crate) use types::BlobDedupConfig;
pub use types::{
    BLOB_CHUNK_SIZE, BlobChunkKey, BlobCompactionPolicy, 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;