boson-backend-sqlite
Embedded SQLite QueueBackend for Boson jobs and runs.
Role
Thin wrapper around boson-backend-sql-common SqlQueueBackend.
Compose
use Arc;
use ;
let backend = new;
let boson = builder
.queue_backend
.execution_context_factory
.build?;
Bootstrap
use install_default_sqlite_backend;
use default_backend_from_global;
let _backend = install_default_sqlite_backend.await?;
let resolved = default_backend_from_global?;
Enable via boson
Available via the boson crate feature sqlite.
Related crates
boson— enable withfeatures = ["sqlite"]boson-backend-sql-common— shared SQL implementationboson-core—QueueBackendtrait definition