Skip to main content

azoth_sqlite/
lib.rs

1//! SQLite-backed projection store implementation
2//!
3//! Provides a queryable SQL database for derived projections from events.
4//!
5//! Key features:
6//! - Cursor tracking for event application
7//! - Schema migrations
8//! - WAL mode for better concurrency
9//! - Atomic batch application
10
11pub mod schema;
12pub mod store;
13pub mod txn;
14
15pub use store::SqliteProjectionStore;
16pub use txn::SimpleProjectionTxn;