#![forbid(unsafe_code)]
#![warn(missing_docs)]
mod config;
mod dispatch;
mod info;
mod metric;
mod ops;
mod ops_atomic;
mod ops_atomic_all;
mod ops_atomic_all_reads;
mod ops_reconcile;
#[cfg(feature = "index")]
mod ops_atomic_all_index;
mod ops_bitmap;
mod ops_bonus;
mod ops_keyspace;
mod ops_more;
mod ops_p2;
mod ops_p3;
mod ops_pipeline;
#[cfg(all(feature = "replicate", not(target_arch = "wasm32")))]
mod ops_feed;
mod ops_blocking;
mod ops_hash_ttl;
#[cfg(feature = "index")]
mod ops_index;
#[cfg(feature = "index")]
mod ops_index_sync;
#[cfg(feature = "index")]
mod ops_index_cold;
#[cfg(all(feature = "index", feature = "persist", not(target_arch = "wasm32")))]
mod ops_index_window;
#[cfg(feature = "index")]
mod ops_table;
#[cfg(feature = "index")]
mod ops_view;
#[cfg(all(feature = "listener", not(target_arch = "wasm32")))]
mod listener;
mod ops_snapshot_view;
mod ops_zset_algebra;
mod ops_zset_flags;
mod op_manifest;
mod store_glue;
mod ops_scan;
pub use ops_atomic::AtomicCtx;
pub use ops_atomic_all::AtomicAllShards;
pub use ops_bitmap::BitOp;
pub use ops_pipeline::Pipeline;
mod pubsub;
mod reaper;
mod shard;
#[cfg(feature = "persist")]
mod shard_restore;
mod pubsub_bus;
#[cfg(feature = "persist")]
mod replay;
#[cfg(all(feature = "replicate", not(target_arch = "wasm32")))]
mod replica_glue;
#[cfg(all(feature = "replicate", not(target_arch = "wasm32")))]
mod replica_runner;
#[cfg(all(feature = "replicate", not(target_arch = "wasm32")))]
mod replica_source;
mod store;
mod store_tick;
mod store_inner;
mod store_wire;
#[cfg(feature = "persist")]
mod store_persist;
pub use config::{Config, EvictionPolicy, TtlReaperMode};
#[cfg(feature = "tier")]
pub use config::TierBudgetSpec;
#[cfg(feature = "tier")]
mod config_tier;
#[cfg(feature = "persist")]
pub use config::AppendFsync;
pub use info::{KevyInfo, KevyTierInfo};
#[cfg(feature = "persist")]
pub use metric::KevyMetric;
pub use metric::OpenReport;
#[cfg(feature = "persist")]
pub use kevy_persist::RewriteStats;
pub use kevy_store::{
ExpireStats, GetShared, HExpireCode, HExpireCond, KevyError, KevyResult, ScoreBound,
StoreError, ZAggregate, ZaddFlags, ZaddReport,
};
#[cfg(all(feature = "replicate", not(target_arch = "wasm32")))]
pub use ops_feed::{Change, ChangeBatch, FeedError, PrefixInfo};
pub use ops_snapshot_view::{Snapshot, SnapshotEntry};
pub use ops_reconcile::ReconcileReport;
#[cfg(feature = "index")]
pub use ops_index::IndexPage;
#[cfg(feature = "text")]
pub use ops_index::highlight::{FacetCounts, MatchOpts, MatchPage};
#[cfg(feature = "index")]
pub use ops_index::advise::IdxAdvice;
#[cfg(feature = "index")]
pub use ops_index::claused::{ScalarPage, ScalarQueryOpts, ValueFilter};
#[cfg(feature = "index")]
pub use ops_view::ViewPage;
#[cfg(feature = "index")]
pub use kevy_index::{AggBy, AnnSpec, GroupStats, Leaf as ViewLeaf, Tree as ViewTree, ViewMode};
#[cfg(feature = "index")]
pub use kevy_index::{Cursor as IndexCursor, IndexKind, IndexValue, SegmentStats as IndexStats, ValType as IndexValType};
#[cfg(feature = "index")]
pub use kevy_index::{IndexVerify, OrderPath, TableEnsure, TableIndex, TableSpec, TableVerify};
pub use kevy_store::Value;
pub use pubsub::{PubsubFrame, Subscription};
pub use store::{Store, WeakStore};
#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
pub use kevy_store::{set_clock_ns, set_wall_clock_ms};