We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bafbf33 commit 07b38cbCopy full SHA for 07b38cb
1 file changed
src/test/java/tech/smartboot/redisun/bench/Bench.java
@@ -7,7 +7,7 @@
7
public abstract class Bench {
8
// 为了在GitHub Actions环境中更快地运行测试,减少测试数据量
9
// 太多的次数会导致 Redisson 带不动
10
- protected static final int SET_COUNT = 50000;
+ protected static final int SET_COUNT = 100000;
11
12
protected static final int CONCURRENT_CLIENT_COUNT = Integer.parseInt(System.getProperty("client.count", "8"));
13
@@ -23,4 +23,4 @@ public abstract class Bench {
23
public abstract void concurrentSet() throws Throwable;
24
25
public abstract void concurrentGet() throws Throwable;
26
-}
+}
0 commit comments