tinyjuice 0.2.0

Pluggable token compression for OpenHuman.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! CCR (Compress-Cache-Retrieve) — original storage + retrieval markers.

pub mod marker;
pub mod store;

pub use marker::{
    LEGACY_RETRIEVE_TOOL_NAME, NEVER_COMPACT_TOOLS, RECOVERY_TOOL_NAMES, RETRIEVE_TOOL_NAME,
    format_marker, is_recovery_tool, parse_markers, recovery_footer,
};
pub use store::{
    RangeUnit, configure, disable_disk_tier, enable_disk_tier, offload, offload_checked, retrieve,
    retrieve_range, short_hash, stats,
};