redis-smq-benchmarks 9.0.10-next.3 → 9.0.10-next.4
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/CHANGELOG.md +11 -0
- package/README.md +4 -9
- package/README.template.md +4 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [9.0.10-next.4](https://github.com/weyoss/redis-smq/compare/v9.0.10-next.3...v9.0.10-next.4) (2026-01-16)
|
|
7
|
+
|
|
8
|
+
### 📝 Documentation
|
|
9
|
+
|
|
10
|
+
- adjust badges position to enhance page styling ([ef3e2fe](https://github.com/weyoss/redis-smq/commit/ef3e2fe19a1f61fb0cbd861090686c7ccfe3bbbe))
|
|
11
|
+
- refine notifications for master and next branch clarity ([63fef1b](https://github.com/weyoss/redis-smq/commit/63fef1bd430680e0de7eba7fe2b8c8f82e821bb9))
|
|
12
|
+
|
|
13
|
+
### ✅ Tests
|
|
14
|
+
|
|
15
|
+
- **redis-smq-benchmarks:** increase wait duration for benchmark results ([f59baf9](https://github.com/weyoss/redis-smq/commit/f59baf9b0d42a8f66760f4901704454776baf98e))
|
|
16
|
+
|
|
6
17
|
## [9.0.10-next.3](https://github.com/weyoss/redis-smq/compare/v9.0.10-next.2...v9.0.10-next.3) (2026-01-16)
|
|
7
18
|
|
|
8
19
|
### ✅ Tests
|
package/README.md
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
# RedisSMQ Benchmarks
|
|
2
2
|
|
|
3
|
-
> [!NOTE]
|
|
4
|
-
> You are viewing the documentation for the "next" branch. These docs describe unreleased changes published under the npm "next" dist-tag.
|
|
5
|
-
> For the latest stable documentation, see:
|
|
6
|
-
>
|
|
7
|
-
> - Master (stable) README: https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-benchmarks
|
|
8
|
-
> - Latest release notes/tags: https://github.com/weyoss/redis-smq/releases/latest
|
|
9
|
-
> - Install stable packages with @latest; pre-release with @next.
|
|
10
|
-
|
|
11
3
|
[](https://github.com/weyoss/redis-smq/releases)
|
|
12
4
|
[](https://app.codecov.io/github/weyoss/redis-smq/tree/next/packages/redis-smq-benchmarks)
|
|
13
5
|
|
|
14
|
-
|
|
6
|
+
> 💡 You are on the "next" branch, featuring the latest updates and upcoming features. For stable releases, please refer to the "master" branch. See https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-benchmarks.
|
|
7
|
+
|
|
8
|
+
A comprehensive benchmarking suite for RedisSMQ message queue system, measuring throughput, latency, and end-to-end
|
|
9
|
+
performance under various workloads.
|
|
15
10
|
|
|
16
11
|
## 📊 Overview
|
|
17
12
|
|
package/README.template.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# RedisSMQ Benchmarks
|
|
2
2
|
|
|
3
|
-
__IS_NEXT_NOTE__
|
|
4
|
-
|
|
5
3
|
__NPM_BADGE__
|
|
6
4
|
__CODECOV_BADGE__
|
|
7
5
|
|
|
8
|
-
|
|
6
|
+
__IS_NEXT_NOTE__
|
|
7
|
+
|
|
8
|
+
A comprehensive benchmarking suite for RedisSMQ message queue system, measuring throughput, latency, and end-to-end
|
|
9
|
+
performance under various workloads.
|
|
9
10
|
|
|
10
11
|
## 📊 Overview
|
|
11
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-benchmarks",
|
|
3
|
-
"version": "9.0.10-next.
|
|
3
|
+
"version": "9.0.10-next.4",
|
|
4
4
|
"description": "Benchmarking tool for RedisSMQ to assess performance and throughput in your application environment.",
|
|
5
5
|
"author": "Weyoss <weyoss@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"redis-smq": "^9.0.10-next.
|
|
54
|
-
"redis-smq-common": "^9.0.10-next.
|
|
53
|
+
"redis-smq": "^9.0.10-next.4",
|
|
54
|
+
"redis-smq-common": "^9.0.10-next.4"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"ioredis": "^5"
|