acta-core 0.1.0-alpha.1

Append-only columnar file format for time-series data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Metadata-first snapshot reader.

mod block;
mod budget;
mod decode;
mod identity;
mod reader;
mod scan;
mod tail;
mod values;

pub use block::{BlockMetadata, PrimaryBounds};
pub use budget::ScanMetrics;
pub use reader::{FILE_ID_SIZE, FileMetadata, Reader, RefreshReport};
pub use scan::{PrimaryRange, Scan};
pub use tail::Tail;