Apalis is a simple, extensible multithreaded background job processing library for Rust.
tower
] ecosystem of
middleware, services, and utilities.actix
] actors with each queue being an [Actor
].Apalis job processing is powered by [tower::Service
] which means you have access to the [tower
] and [tower-http
] middleware.
Apalis has support for Redis, SQlite, PostgresSQL and MySQL.
To get started, just add to Cargo.toml
toml
[dependencies]
apalis = { version = "0.3.0-beta.0", features = ["redis"] }
```rust use apalis::{redis::RedisStorage, JobError, JobRequest, JobResult, QueueBuilder, Storage, Worker}; use serde::{Deserialize, Serialize};
struct Email { to: String, }
async fn email_service(job: JobRequest
async fn main() -> std::io::Result<()> { std::env::setvar("RUSTLOG", "debug"); envlogger::init(); let redis = std::env::var("REDISURL").expect("Missing env variable REDISURL"); let storage = RedisStorage::new(redis).await.unwrap(); Worker::new() .registerwithcount(2, move || { QueueBuilder::new(storage.clone()) .buildfn(email_service) .start() }) .run() .await }
```
Then
```rust
//This can be in another part of the program or another application
async fn produceroutejobs(storage: &RedisStorage
```
Since we provide a few storage solutions, here is a table comparing them:
| Feature | Redis | Sqlite | Postgres | Sled | Mysql | Mongo | | :------------- | :---: | :----: | :------: | :--: | ----- | ----- | | Priorities | | | | | | | | Scheduled jobs | ✓ | ✓ | ✓ | ✓ | ✓ | - | | Retryable jobs | ✓ | ✓ | ✓ | | ✓ | - | | Persistence | ✓ | ✓ | ✓ | ✓ | ✓ | - |
v 0.3
v 0.2
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
It was formerly actix-redis-jobs
and if you want to use the crate name please contact me.
This project is licensed under the MIT License - see the LICENSE.md file for details