View Source Oban.Engines.Lite (Oban v2.19.0)
An engine for running Oban with SQLite3.
See the SQLite3 guide for more information on using SQLite3 with Oban.
Usage
Start an Oban
instance using the Lite
engine:
Oban.start_link(
engine: Oban.Engines.Lite,
queues: [default: 10],
repo: MyApp.Repo
)