redis/internal/pool/bench_test.go

95 lines
1.7 KiB
Go
Raw Normal View History

package pool_test
import (
2019-07-04 11:18:06 +03:00
"context"
2018-08-10 13:55:57 +03:00
"fmt"
"testing"
"time"
2020-03-11 17:29:16 +03:00
"github.com/go-redis/redis/v8/internal/pool"
)
2018-08-10 13:55:57 +03:00
type poolGetPutBenchmark struct {
poolSize int
}
2018-08-10 13:55:57 +03:00
func (bm poolGetPutBenchmark) String() string {
return fmt.Sprintf("pool=%d", bm.poolSize)
}
2018-08-10 13:55:57 +03:00
func BenchmarkPoolGetPut(b *testing.B) {
benchmarks := []poolGetPutBenchmark{
{1},
{2},
{8},
{32},
{64},
{128},
}
for _, bm := range benchmarks {
b.Run(bm.String(), func(b *testing.B) {
connPool := pool.NewConnPool(&pool.Options{
Dialer: dummyDialer,
PoolSize: bm.poolSize,
PoolTimeout: time.Second,
IdleTimeout: time.Hour,
IdleCheckFrequency: time.Hour,
})
2018-08-10 13:55:57 +03:00
b.ResetTimer()
2018-08-10 13:55:57 +03:00
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
2019-07-04 11:18:06 +03:00
cn, err := connPool.Get(context.Background())
2018-08-10 13:55:57 +03:00
if err != nil {
b.Fatal(err)
}
connPool.Put(cn)
}
})
})
}
}
2018-08-10 13:55:57 +03:00
type poolGetRemoveBenchmark struct {
poolSize int
}
2018-08-10 13:55:57 +03:00
func (bm poolGetRemoveBenchmark) String() string {
return fmt.Sprintf("pool=%d", bm.poolSize)
}
2018-08-10 13:55:57 +03:00
func BenchmarkPoolGetRemove(b *testing.B) {
benchmarks := []poolGetRemoveBenchmark{
{1},
{2},
{8},
{32},
{64},
{128},
}
for _, bm := range benchmarks {
b.Run(bm.String(), func(b *testing.B) {
connPool := pool.NewConnPool(&pool.Options{
Dialer: dummyDialer,
PoolSize: bm.poolSize,
PoolTimeout: time.Second,
IdleTimeout: time.Hour,
IdleCheckFrequency: time.Hour,
})
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
2019-07-04 11:18:06 +03:00
cn, err := connPool.Get(context.Background())
2018-08-10 13:55:57 +03:00
if err != nil {
b.Fatal(err)
}
2019-08-08 10:36:13 +03:00
connPool.Remove(cn, nil)
2018-08-10 13:55:57 +03:00
}
})
})
}
}