2016-04-09 13:27:16 +03:00
|
|
|
package redis // import "gopkg.in/redis.v4"
|
2012-07-25 17:00:50 +04:00
|
|
|
|
|
|
|
import (
|
2015-05-15 15:21:28 +03:00
|
|
|
"fmt"
|
2014-07-31 17:01:54 +04:00
|
|
|
"log"
|
2016-03-12 11:52:13 +03:00
|
|
|
|
2016-04-09 14:52:01 +03:00
|
|
|
"gopkg.in/redis.v4/internal"
|
2016-07-02 15:52:10 +03:00
|
|
|
"gopkg.in/redis.v4/internal/errors"
|
2016-04-09 13:27:16 +03:00
|
|
|
"gopkg.in/redis.v4/internal/pool"
|
2012-08-09 14:12:41 +04:00
|
|
|
)
|
2012-07-25 17:00:50 +04:00
|
|
|
|
2016-07-02 15:52:10 +03:00
|
|
|
// Redis nil reply, .e.g. when key does not exist.
|
|
|
|
const Nil = errors.Nil
|
|
|
|
|
2016-03-12 11:52:13 +03:00
|
|
|
func SetLogger(logger *log.Logger) {
|
2016-04-09 14:52:01 +03:00
|
|
|
internal.Logger = logger
|
2016-03-12 11:52:13 +03:00
|
|
|
}
|
2016-02-03 20:30:39 +03:00
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
type baseClient struct {
|
2016-03-12 11:52:13 +03:00
|
|
|
connPool pool.Pooler
|
2015-05-23 17:55:08 +03:00
|
|
|
opt *Options
|
2016-03-09 16:14:01 +03:00
|
|
|
|
|
|
|
onClose func() error // hook called when client is closed
|
2012-07-26 22:43:21 +04:00
|
|
|
}
|
|
|
|
|
2015-05-15 15:21:28 +03:00
|
|
|
func (c *baseClient) String() string {
|
|
|
|
return fmt.Sprintf("Redis<%s db:%d>", c.opt.Addr, c.opt.DB)
|
|
|
|
}
|
|
|
|
|
2016-03-15 15:04:35 +03:00
|
|
|
func (c *baseClient) conn() (*pool.Conn, error) {
|
|
|
|
cn, err := c.connPool.Get()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !cn.Inited {
|
|
|
|
if err := c.initConn(cn); err != nil {
|
2016-03-17 19:00:47 +03:00
|
|
|
_ = c.connPool.Remove(cn, err)
|
2016-03-15 15:04:35 +03:00
|
|
|
return nil, err
|
2016-03-12 13:41:02 +03:00
|
|
|
}
|
|
|
|
}
|
2016-03-15 15:04:35 +03:00
|
|
|
return cn, err
|
2012-07-26 19:16:17 +04:00
|
|
|
}
|
|
|
|
|
2016-03-12 11:52:13 +03:00
|
|
|
func (c *baseClient) putConn(cn *pool.Conn, err error, allowTimeout bool) bool {
|
2016-07-02 15:52:10 +03:00
|
|
|
if errors.IsBadConn(err, allowTimeout) {
|
2016-03-17 19:00:47 +03:00
|
|
|
_ = c.connPool.Remove(cn, err)
|
2016-03-01 13:31:06 +03:00
|
|
|
return false
|
2012-08-06 12:33:49 +04:00
|
|
|
}
|
2016-03-01 13:31:06 +03:00
|
|
|
|
2016-03-14 14:17:33 +03:00
|
|
|
_ = c.connPool.Put(cn)
|
2016-03-01 13:31:06 +03:00
|
|
|
return true
|
2012-08-06 12:33:49 +04:00
|
|
|
}
|
|
|
|
|
2016-03-12 13:41:02 +03:00
|
|
|
func (c *baseClient) initConn(cn *pool.Conn) error {
|
2016-03-15 15:04:35 +03:00
|
|
|
cn.Inited = true
|
|
|
|
|
2016-05-06 21:12:31 +03:00
|
|
|
if c.opt.Password == "" && c.opt.DB == 0 && !c.opt.ReadOnly {
|
2016-03-12 13:41:02 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temp client for Auth and Select.
|
|
|
|
client := newClient(c.opt, pool.NewSingleConnPool(cn))
|
2016-06-05 12:45:39 +03:00
|
|
|
_, err := client.Pipelined(func(pipe *Pipeline) error {
|
|
|
|
if c.opt.Password != "" {
|
|
|
|
pipe.Auth(c.opt.Password)
|
2016-03-12 13:41:02 +03:00
|
|
|
}
|
|
|
|
|
2016-06-05 12:45:39 +03:00
|
|
|
if c.opt.DB > 0 {
|
|
|
|
pipe.Select(c.opt.DB)
|
2016-03-12 13:41:02 +03:00
|
|
|
}
|
|
|
|
|
2016-06-05 12:45:39 +03:00
|
|
|
if c.opt.ReadOnly {
|
|
|
|
pipe.ReadOnly()
|
2016-05-06 21:12:31 +03:00
|
|
|
}
|
|
|
|
|
2016-06-05 12:45:39 +03:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
2016-03-12 13:41:02 +03:00
|
|
|
}
|
|
|
|
|
2016-06-17 15:09:38 +03:00
|
|
|
func (c *baseClient) Process(cmd Cmder) error {
|
2015-05-10 15:33:04 +03:00
|
|
|
for i := 0; i <= c.opt.MaxRetries; i++ {
|
|
|
|
if i > 0 {
|
|
|
|
cmd.reset()
|
|
|
|
}
|
2012-07-26 22:43:21 +04:00
|
|
|
|
2016-03-15 15:04:35 +03:00
|
|
|
cn, err := c.conn()
|
2015-05-10 15:33:04 +03:00
|
|
|
if err != nil {
|
|
|
|
cmd.setErr(err)
|
2016-06-17 15:09:38 +03:00
|
|
|
return err
|
2015-05-10 15:33:04 +03:00
|
|
|
}
|
2012-07-26 22:43:21 +04:00
|
|
|
|
2016-03-08 18:18:52 +03:00
|
|
|
readTimeout := cmd.readTimeout()
|
|
|
|
if readTimeout != nil {
|
|
|
|
cn.ReadTimeout = *readTimeout
|
2015-05-10 15:33:04 +03:00
|
|
|
} else {
|
|
|
|
cn.ReadTimeout = c.opt.ReadTimeout
|
|
|
|
}
|
2016-03-08 18:18:52 +03:00
|
|
|
cn.WriteTimeout = c.opt.WriteTimeout
|
2015-05-10 15:33:04 +03:00
|
|
|
|
2016-03-12 11:52:13 +03:00
|
|
|
if err := writeCmd(cn, cmd); err != nil {
|
2016-03-08 18:18:52 +03:00
|
|
|
c.putConn(cn, err, false)
|
2015-05-10 15:33:04 +03:00
|
|
|
cmd.setErr(err)
|
2016-07-02 15:52:10 +03:00
|
|
|
if err != nil && errors.IsRetryable(err) {
|
2015-05-10 15:33:04 +03:00
|
|
|
continue
|
|
|
|
}
|
2016-06-17 15:09:38 +03:00
|
|
|
return err
|
2015-05-10 15:33:04 +03:00
|
|
|
}
|
|
|
|
|
2015-10-07 17:09:20 +03:00
|
|
|
err = cmd.readReply(cn)
|
2016-03-08 18:18:52 +03:00
|
|
|
c.putConn(cn, err, readTimeout != nil)
|
2016-07-02 15:52:10 +03:00
|
|
|
if err != nil && errors.IsRetryable(err) {
|
2015-05-10 15:33:04 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-17 15:09:38 +03:00
|
|
|
return err
|
2012-07-26 19:16:17 +04:00
|
|
|
}
|
2016-06-17 15:09:38 +03:00
|
|
|
|
|
|
|
return cmd.Err()
|
2014-05-11 11:42:40 +04:00
|
|
|
}
|
|
|
|
|
2016-03-14 14:17:33 +03:00
|
|
|
func (c *baseClient) closed() bool {
|
|
|
|
return c.connPool.Closed()
|
|
|
|
}
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
// Close closes the client, releasing any open resources.
|
2015-09-12 09:36:03 +03:00
|
|
|
//
|
|
|
|
// It is rare to Close a Client, as the Client is meant to be
|
|
|
|
// long-lived and shared between many goroutines.
|
2014-05-11 11:42:40 +04:00
|
|
|
func (c *baseClient) Close() error {
|
2016-03-09 16:14:01 +03:00
|
|
|
var retErr error
|
|
|
|
if c.onClose != nil {
|
|
|
|
if err := c.onClose(); err != nil && retErr == nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := c.connPool.Close(); err != nil && retErr == nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
return retErr
|
2012-07-26 19:16:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2015-09-12 09:36:03 +03:00
|
|
|
// Client is a Redis client representing a pool of zero or more
|
|
|
|
// underlying connections. It's safe for concurrent use by multiple
|
|
|
|
// goroutines.
|
2012-08-11 18:42:10 +04:00
|
|
|
type Client struct {
|
2016-03-09 12:49:05 +03:00
|
|
|
baseClient
|
2016-06-05 12:45:39 +03:00
|
|
|
cmdable
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
|
|
|
|
2016-03-12 11:52:13 +03:00
|
|
|
func newClient(opt *Options, pool pool.Pooler) *Client {
|
2016-03-09 12:49:05 +03:00
|
|
|
base := baseClient{opt: opt, connPool: pool}
|
2016-04-13 11:52:47 +03:00
|
|
|
client := &Client{
|
2016-03-09 16:14:01 +03:00
|
|
|
baseClient: base,
|
2016-06-05 12:45:39 +03:00
|
|
|
cmdable: cmdable{base.Process},
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
2016-04-13 11:52:47 +03:00
|
|
|
return client
|
2012-08-05 16:09:43 +04:00
|
|
|
}
|
|
|
|
|
2015-09-12 09:36:03 +03:00
|
|
|
// NewClient returns a client to the Redis Server specified by Options.
|
2015-05-23 17:55:08 +03:00
|
|
|
func NewClient(opt *Options) *Client {
|
2016-06-05 14:10:30 +03:00
|
|
|
opt.init()
|
2016-03-12 11:52:13 +03:00
|
|
|
return newClient(opt, newConnPool(opt))
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
2016-01-19 19:36:40 +03:00
|
|
|
|
2016-03-12 11:52:13 +03:00
|
|
|
// PoolStats returns connection pool stats.
|
2016-01-19 19:36:40 +03:00
|
|
|
func (c *Client) PoolStats() *PoolStats {
|
2016-03-12 11:52:13 +03:00
|
|
|
s := c.connPool.Stats()
|
|
|
|
return &PoolStats{
|
2016-03-19 17:10:34 +03:00
|
|
|
Requests: s.Requests,
|
|
|
|
Hits: s.Hits,
|
|
|
|
Timeouts: s.Timeouts,
|
2016-03-12 11:52:13 +03:00
|
|
|
|
2016-03-19 17:10:34 +03:00
|
|
|
TotalConns: s.TotalConns,
|
|
|
|
FreeConns: s.FreeConns,
|
2016-03-12 11:52:13 +03:00
|
|
|
}
|
2016-01-19 19:36:40 +03:00
|
|
|
}
|
2016-04-09 10:47:15 +03:00
|
|
|
|
|
|
|
func (c *Client) Pipeline() *Pipeline {
|
2016-06-05 12:45:39 +03:00
|
|
|
pipe := Pipeline{
|
2016-04-09 10:47:15 +03:00
|
|
|
exec: c.pipelineExec,
|
|
|
|
}
|
2016-06-05 12:45:39 +03:00
|
|
|
pipe.cmdable.process = pipe.Process
|
|
|
|
pipe.statefulCmdable.process = pipe.Process
|
|
|
|
return &pipe
|
2016-04-09 10:47:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Pipelined(fn func(*Pipeline) error) ([]Cmder, error) {
|
|
|
|
return c.Pipeline().pipelined(fn)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) pipelineExec(cmds []Cmder) error {
|
|
|
|
var retErr error
|
|
|
|
failedCmds := cmds
|
|
|
|
for i := 0; i <= c.opt.MaxRetries; i++ {
|
|
|
|
cn, err := c.conn()
|
|
|
|
if err != nil {
|
|
|
|
setCmdsErr(failedCmds, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > 0 {
|
|
|
|
resetCmds(failedCmds)
|
|
|
|
}
|
|
|
|
failedCmds, err = execCmds(cn, failedCmds)
|
|
|
|
c.putConn(cn, err, false)
|
|
|
|
if err != nil && retErr == nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
if len(failedCmds) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retErr
|
|
|
|
}
|
2016-07-21 16:04:40 +03:00
|
|
|
|
|
|
|
func (c *Client) pubSub() *PubSub {
|
|
|
|
return &PubSub{
|
|
|
|
base: baseClient{
|
|
|
|
opt: c.opt,
|
|
|
|
connPool: pool.NewStickyConnPool(c.connPool.(*pool.ConnPool), false),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subscribe subscribes the client to the specified channels.
|
|
|
|
func (c *Client) Subscribe(channels ...string) (*PubSub, error) {
|
|
|
|
pubsub := c.pubSub()
|
|
|
|
return pubsub, pubsub.Subscribe(channels...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PSubscribe subscribes the client to the given patterns.
|
|
|
|
func (c *Client) PSubscribe(channels ...string) (*PubSub, error) {
|
|
|
|
pubsub := c.pubSub()
|
|
|
|
return pubsub, pubsub.PSubscribe(channels...)
|
|
|
|
}
|