infino 0.5.6

A fast retrieval engine that stores data on object storage and runs SQL, full-text search, and vector search over it from a single system — search-on-Parquet.
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Infino Authors

//! In-engine metering signals for benches and `features = ["metering"]`.
//!
//! Four resource families — parallel names, one ownership home:
//! - [`io`] — object-store request/byte ledger (+ background attribution)
//! - [`cpu`] — process on-CPU time
//! - [`rss`] — process resident set / peak sampler
//! - [`op_stats`] — per-query execution work counters
//!
//! Storage providers `record_*` into [`UsageMeter`]; they do not own it.
//! Benches and platform must use these APIs rather than reimplement
//! `/proc` parsers or parallel I/O counters.

pub mod cpu;
pub mod ingest;
pub mod io;
pub mod op_stats;
pub mod rss;

pub use ingest::classify_batch_bytes;
pub use io::{
    ClassIo, N_URI_CLASSES, TraceEntry, UriClass, UsageMeter, UsageSnapshot, io_is_background,
    scope_background,
};