redis/pool_test.go

131 lines
3.2 KiB
Go
Raw Normal View History

2015-01-15 18:51:22 +03:00
package redis_test
import (
2019-07-04 11:18:06 +03:00
"context"
"time"
2023-01-27 18:00:49 +03:00
. "github.com/bsm/ginkgo/v2"
. "github.com/bsm/gomega"
2021-09-08 16:00:52 +03:00
2023-01-23 09:48:54 +03:00
"github.com/redis/go-redis/v9"
2015-01-15 18:51:22 +03:00
)
var _ = Describe("pool", func() {
2015-01-15 18:51:22 +03:00
var client *redis.Client
2015-01-15 18:51:22 +03:00
BeforeEach(func() {
2018-08-12 10:08:21 +03:00
opt := redisOptions()
opt.MinIdleConns = 0
opt.ConnMaxLifetime = 0
opt.ConnMaxIdleTime = time.Second
2018-08-12 10:08:21 +03:00
client = redis.NewClient(opt)
2015-01-15 18:51:22 +03:00
})
AfterEach(func() {
Expect(client.Close()).NotTo(HaveOccurred())
})
It("respects max size", func() {
perform(1000, func(id int) {
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
})
2015-01-31 10:53:08 +03:00
2015-01-30 17:58:26 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("respects max size on multi", func() {
perform(1000, func(id int) {
2015-01-15 18:51:22 +03:00
var ping *redis.StatusCmd
2020-03-11 17:26:42 +03:00
err := client.Watch(ctx, func(tx *redis.Tx) error {
cmds, err := tx.Pipelined(ctx, func(pipe redis.Pipeliner) error {
ping = pipe.Ping(ctx)
2016-05-02 15:54:15 +03:00
return nil
})
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(HaveLen(1))
return err
2015-01-15 18:51:22 +03:00
})
Expect(err).NotTo(HaveOccurred())
2016-05-02 15:54:15 +03:00
2015-01-15 18:51:22 +03:00
Expect(ping.Err()).NotTo(HaveOccurred())
Expect(ping.Val()).To(Equal("PONG"))
})
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("respects max size on pipelines", func() {
perform(1000, func(id int) {
2015-01-15 18:51:22 +03:00
pipe := client.Pipeline()
2020-03-11 17:26:42 +03:00
ping := pipe.Ping(ctx)
cmds, err := pipe.Exec(ctx)
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(HaveLen(1))
Expect(ping.Err()).NotTo(HaveOccurred())
Expect(ping.Val()).To(Equal("PONG"))
})
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("removes broken connections", func() {
2019-07-04 11:18:06 +03:00
cn, err := client.Pool().Get(context.Background())
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
cn.SetNetConn(&badConn{})
2020-08-15 15:36:02 +03:00
client.Pool().Put(ctx, cn)
2015-01-15 18:51:22 +03:00
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
2022-06-04 15:15:43 +03:00
val, err = client.Ping(ctx).Result()
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(Equal(1))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(Equal(1))
stats := pool.Stats()
Expect(stats.Hits).To(Equal(uint32(1)))
Expect(stats.Misses).To(Equal(uint32(2)))
Expect(stats.Timeouts).To(Equal(uint32(0)))
2015-01-15 18:51:22 +03:00
})
It("reuses connections", func() {
2023-01-23 09:48:54 +03:00
// explain: https://github.com/redis/go-redis/pull/1675
opt := redisOptions()
opt.MinIdleConns = 0
opt.ConnMaxLifetime = 0
opt.ConnMaxIdleTime = 10 * time.Second
client = redis.NewClient(opt)
2015-01-15 18:51:22 +03:00
for i := 0; i < 100; i++ {
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
}
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(Equal(1))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(Equal(1))
stats := pool.Stats()
Expect(stats.Hits).To(Equal(uint32(99)))
Expect(stats.Misses).To(Equal(uint32(1)))
Expect(stats.Timeouts).To(Equal(uint32(0)))
2015-01-15 18:51:22 +03:00
})
})