reifydb-codec 0.9.0

Unified encoding and decoding for all ReifyDB values, frames, rows, keys, and boundaries
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB

//! Per-column wire encodings: plain, dictionary, run-length, and delta. Each encoding has a stable tag in the RBCF
//! header so the decoder can pick the right reader without out-of-band coordination. New encodings need a new tag
//! and a coordinated update on every peer that might receive the resulting payload.

pub mod delta;
pub mod dict;
pub mod plain;
pub mod rle;