1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Improve deadlines support.

This commit is contained in:
Vladimir Mihailenco
2013-09-11 19:22:10 +03:00
parent ce34e39219
commit cc74e79eb7
9 changed files with 220 additions and 163 deletions

View File

@ -8,11 +8,9 @@ func (c *Client) PipelineClient() (*PipelineClient, error) {
return &PipelineClient{
Client: &Client{
baseClient: &baseClient{
opt: c.opt,
connPool: c.connPool,
password: c.password,
db: c.db,
reqs: make([]Req, 0),
},
},