reifydb-core 0.5.0

Core database interfaces and data structures for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! In-memory representation of query results and the structures that carry rows from the engine to the consumer.
//!
//! Holds the columnar data model, the row-oriented presentation layer used by display code, and the in-memory index
//! types used by the engine. Together these form the runtime representation that everything above the storage tier
//! (engine, subscriptions, the wire layer, the SDK) operates on.

pub mod column;
pub mod frame;
pub mod index;