power-queues 2.0.19 → 2.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The library is designed for real-world distributed systems that require high thr
|
|
|
6
6
|
|
|
7
7
|
Unlike traditional Redis-based queues that rely on lists or complex abstractions, **power-queues** focuses on low-level control, atomic operations, and minimal overhead, making it ideal for high-load backends, microservices, schedulers, telemetry pipelines, and data-processing clusters.
|
|
8
8
|
|
|
9
|
-
Extends **power-redis**.
|
|
9
|
+
Extends **[power-redis](https://www.npmjs.com/package/power-redis)**.
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
12
|
<img src="https://img.shields.io/badge/redis-streams-red?logo=redis" />
|
|
@@ -194,6 +194,5 @@ Every part of the engine is designed to prevent:
|
|
|
194
194
|
The heartbeat + TTL strategy guarantees that no task is "lost" even in
|
|
195
195
|
chaotic cluster environments.
|
|
196
196
|
|
|
197
|
-
##
|
|
198
|
-
|
|
197
|
+
## 📜 License
|
|
199
198
|
MIT - free for commercial and private use.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "power-queues",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.21",
|
|
4
4
|
"description": "High-performance Redis Streams queue for Node.js with Lua-powered bulk XADD, idempotent workers, heartbeat locks, stuck-task recovery, retries, DLQ, and distributed processing.",
|
|
5
5
|
"author": "ihor-bielchenko",
|
|
6
6
|
"license": "MIT",
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"power-redis"
|
|
82
82
|
],
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"full-utils": "^
|
|
85
|
-
"power-redis": "^2.0.
|
|
84
|
+
"full-utils": "^3.0.2",
|
|
85
|
+
"power-redis": "^2.0.21",
|
|
86
86
|
"uuid": "^13.0.0"
|
|
87
87
|
}
|
|
88
88
|
}
|