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
//! Redis-backed rate-limit store (`throttler` feature) — the cross-process
//! [`ThrottlerStore`](nest_rs_throttler::ThrottlerStore) backend for the
//! `nest-rs-throttler` guard.

mod module;
mod store;

pub use module::{RedisThrottlerModule, RedisThrottlerSetup};
pub use store::RedisThrottler;