redis/export_test.go

18 lines
244 B
Go
Raw Normal View History

2013-11-07 18:20:15 +04:00
package redis
import "net"
2013-11-07 18:20:15 +04:00
func (c *baseClient) Pool() pool {
return c.connPool
}
2015-03-23 11:23:33 +03:00
func (c *PubSub) Pool() pool {
return c.base.connPool
}
var NewConnDialer = newConnDialer
func (cn *conn) SetNetConn(netcn net.Conn) {
cn.netcn = netcn
}