Expand description
SQLite SchedulerStore for Chronon.
Audience: backend engineers and test authors needing embedded, file-backed persistence.
§Stack position
chronon (facade, `sqlite` feature) → chronon-backend-sqlite → chronon-backend-sql-common → chronon-coreSuitable for single-process deployments and CI. SQLite allows one writer at a time; use PostgreSQL or the Redis composite backend for multi-worker claim throughput.
§Entry points
SqliteSchedulerStore::new— open a database fileSqliteSchedulerStore::connect— connect via URL (including:memory:)
§Example
use chronon_backend_sqlite::SqliteSchedulerStore;
let store = SqliteSchedulerStore::connect("sqlite://:memory:").await?;Structs§
- Sqlite
Scheduler Store - SQLite-backed scheduler store.