13 个版本 (6 个重大更新)

0.10.0 2024年5月7日
0.9.0 2023年12月29日
0.8.0 2023年12月29日
0.7.0 2023年9月14日
0.4.8 2023年4月29日

#13 in #job-scheduler

Download history 163/week @ 2024-05-05 2/week @ 2024-05-12 10/week @ 2024-05-19 2/week @ 2024-06-09 1/week @ 2024-06-30 15/week @ 2024-07-07

每月下载量 933

MIT 许可证

29KB
731 代码行

mq-surreal

SQL

定义模式

DEFINE TABLE queue SCHEMAFULL;
DEFINE FIELD created_at     ON queue TYPE datetime;
DEFINE FIELD updated_at     ON queue TYPE datetime;
DEFINE FIELD scheduled_at   ON queue TYPE datetime;
DEFINE FIELD locked_at      ON queue TYPE option<datetime>;
DEFINE FIELD queue          ON queue TYPE string;
DEFINE FIELD kind           ON queue TYPE string;
DEFINE FIELD max_attempts   ON queue TYPE number;
DEFINE FIELD attempts       ON queue TYPE number;
DEFINE FIELD priority       ON queue TYPE number;
DEFINE FIELD unique_key     ON queue TYPE option<string>;
DEFINE FIELD lease_time     ON queue TYPE number;
DEFINE FIELD payload        ON queue FLEXIBLE TYPE object;
DEFINE FIELD error_reason   ON queue FLEXIBLE TYPE option<object>;

需要 SurrealDB v1.0.0-beta9+

依赖项

~60MB
~1M SLoC