Skip to content

Commit 408208f

Browse files
committed
Tweak redis pool settings for benchmark
1 parent 0ef2c4a commit 408208f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httprateredis_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ func BenchmarkLocalCounter(b *testing.B) {
158158
limitCounter, err := httprateredis.NewRedisLimitCounter(&httprateredis.Config{
159159
Host: "localhost",
160160
Port: 6379,
161-
MaxIdle: 500,
162-
MaxActive: 500,
161+
MaxIdle: 100,
162+
MaxActive: 200,
163163
DBIndex: 0,
164164
ClientName: "httprateredis_test",
165165
PrefixKey: fmt.Sprintf("httprate:test:%v", rand.Int31n(100000)), // Unique key for each test

0 commit comments

Comments
 (0)