redis/export_test.go

12 lines
185 B
Go
Raw Normal View History

2013-11-07 18:20:15 +04:00
package redis
import "gopkg.in/redis.v3/internal/pool"
func (c *baseClient) Pool() pool.Pooler {
2013-11-07 18:20:15 +04:00
return c.connPool
}
2015-03-23 11:23:33 +03:00
func (c *PubSub) Pool() pool.Pooler {
return c.base.connPool
}