Skip to content

Commit 7c1a60b

Browse files
committed
perf(benchmark): 扩展性能测试客户端数量范围- 增加更多客户端数量测试点:16,64, 2048- 更新性能测试报告生成逻辑以支持新增测试点
- 完善测试覆盖面以获得更详细的性能数据
1 parent a805e62 commit 7c1a60b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: 运行性能测试
4848
run: |
4949
# 串行执行所有客户端数量的测试
50-
for client_count in 1 8 128 1024; do
50+
for client_count in 1 8 16 64 128 1024 2048; do
5151
echo "Running Redisun vs Redisson vs Jedis vs Lettuce benchmark tests with ${client_count} clients..."
5252
5353
for framework in Redisun Redisson Jedis Lettuce; do
@@ -74,7 +74,7 @@ jobs:
7474
echo "| 客户端数量 | Redisun耗时 | Redisson耗时 | Jedis耗时 | Lettuce耗时 | Redisun OPS | Redisson OPS | Jedis OPS | Lettuce OPS |" >> benchmark-report.md
7575
echo "|------------|-------------|--------------|-----------|-------------|-------------|--------------|-----------|-------------|" >> benchmark-report.md
7676
# 遍历所有客户端数量提取结果
77-
for client_count in 1 8 128 1024; do
77+
for client_count in 1 8 16 64 128 1024 2048; do
7878
echo -n "|${client_count}|" >> benchmark-report.md
7979
8080
# 耗时

0 commit comments

Comments
 (0)