@pingpolls/redisq 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # RedisQueue
1
+ # RedisQ
2
2
 
3
3
  A lightweight, type-safe Redis-based message queue for Bun with support for delayed messages, retries, and batch processing.
4
4
 
@@ -754,7 +754,7 @@ describe('Queue Tests', () => {
754
754
  Run the stress test to benchmark on your hardware:
755
755
 
756
756
  ```bash
757
- bun run stress-test.ts
757
+ bun stress
758
758
  ```
759
759
 
760
760
  Expected results on limited 2CPU 2GB Dockerized WSL2 with:
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "stress": "bun benchmark/stress.ts"
28
28
  },
29
29
  "type": "module",
30
- "version": "0.1.0"
30
+ "version": "0.1.1"
31
31
  }