Skip to main content

Crate chronon_backend_sqlite

Crate chronon_backend_sqlite 

Source
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-core

Suitable 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

§Example

use chronon_backend_sqlite::SqliteSchedulerStore;

let store = SqliteSchedulerStore::connect("sqlite://:memory:").await?;

Structs§

SqliteSchedulerStore
SQLite-backed scheduler store.