nest-rs-redis 0.5.0

Redis-backed queue integration for nest-rs-queue (via apalis-redis): the QueueConnection producer, the QueueWorker consumer transport, and the #[processor] decorator re-export. The user-facing storage is Redis; apalis is an implementation detail.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Consumer side: the [`QueueWorker`] transport drains `#[process]` methods
//! discovered at link time, and [`QueueWorkerModule`] is the activation seam
//! a worker app imports to attach the transport. Producer-only apps skip
//! this module — see [`crate::QueueModule`] for the connection side.

mod consumer;
mod module;

pub use consumer::QueueWorker;
pub use module::QueueWorkerModule;