asynq-rs 0.2.0

Asynq by redis client library. This library provides a set of tools for asynchronous task processing using Redis as a backend.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub const DEFAULT: &str = "default";

pub const QUEUED: &str = "ZQL";
pub const DELIMITER: &str = ":";

pub const PENDING: &str = "pending";
// pub const ACTIVE: &str = "active";
pub const COMPLETED: &str = "completed";
pub const FAIL_ED: &str = "failed";
pub const T: &str = "t";

pub const SUCCEEDED: i8 = 1;
pub const FAIL: i8 = 2;

pub const EVAL_SHA: &str = "EVALSHA";
pub const EVAL: &str = "EVAL";