tonbo 0.4.0-a1

Embedded database for serverless and edge runtimes, storing data as Parquet on S3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Zero-copy key views and owned key wrappers over Arrow buffers.
//!
//! This module introduces the skeleton for the zero-copy key design.
//! The goal is to keep hot-path key handling on borrow-based views
//! that reference Arrow buffers directly while providing an owned form only
//! where durability requires it.
mod heap_size;
mod owned;
mod row;
mod ts;

pub use owned::{KeyOwned, KeyOwnedError};
pub use row::{KeyRow, KeyRowError};
pub use ts::{KeyTsOwned, KeyTsViewRaw};