nodedb-codec 0.1.1

Compression codecs for NodeDB timeseries columnar storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0

//! Vector quantization codec family — binary, ternary, 4-bit scalar, residual,
//! and unified layout types shared across HNSW hot-path, IVF-PQ, and BBQ.

pub mod bbq;
pub mod codec;
pub mod hamming;
pub mod layout;
pub mod opq;
pub mod opq_kmeans;
pub mod opq_rotation;
pub mod rabitq;
pub mod ternary;