redis/redis.go

149 lines
3.1 KiB
Go
Raw Normal View History

2015-05-14 15:19:29 +03:00
package redis // import "gopkg.in/redis.v3"
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"
"os"
"sync/atomic"
"gopkg.in/redis.v3/internal/pool"
2012-08-09 14:12:41 +04:00
)
2012-07-25 17:00:50 +04:00
// Deprecated. Use SetLogger instead.
var Logger *log.Logger
func init() {
SetLogger(log.New(os.Stderr, "redis: ", log.LstdFlags))
}
func SetLogger(logger *log.Logger) {
Logger = logger
pool.Logger = logger
}
2014-05-11 11:42:40 +04:00
type baseClient struct {
connPool pool.Pooler
opt *Options
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)
}
func (c *baseClient) conn() (*pool.Conn, bool, error) {
return c.connPool.Get()
2012-07-26 19:16:17 +04:00
}
func (c *baseClient) putConn(cn *pool.Conn, err error, allowTimeout bool) bool {
2016-03-08 18:18:52 +03:00
if isBadConn(err, allowTimeout) {
2015-12-22 16:45:03 +03:00
err = c.connPool.Remove(cn, err)
if err != nil {
2016-03-02 14:37:28 +03:00
Logger.Printf("pool.Remove failed: %s", err)
}
return false
}
err = c.connPool.Put(cn)
2015-04-17 16:18:44 +03:00
if err != nil {
2016-03-02 14:37:28 +03:00
Logger.Printf("pool.Put failed: %s", err)
}
return true
}
2015-01-24 15:12:48 +03:00
func (c *baseClient) process(cmd Cmder) {
for i := 0; i <= c.opt.MaxRetries; i++ {
if i > 0 {
cmd.reset()
}
2012-07-26 22:43:21 +04:00
cn, _, err := c.conn()
if err != nil {
cmd.setErr(err)
return
}
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
} else {
cn.ReadTimeout = c.opt.ReadTimeout
}
2016-03-08 18:18:52 +03:00
cn.WriteTimeout = c.opt.WriteTimeout
if err := writeCmd(cn, cmd); err != nil {
2016-03-08 18:18:52 +03:00
c.putConn(cn, err, false)
cmd.setErr(err)
if shouldRetry(err) {
continue
}
return
}
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)
if shouldRetry(err) {
continue
}
2012-07-26 19:16:17 +04:00
return
}
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 {
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.
type Client struct {
2016-03-09 12:49:05 +03:00
baseClient
2015-01-24 15:12:48 +03:00
commandable
}
func newClient(opt *Options, pool pool.Pooler) *Client {
2016-03-09 12:49:05 +03:00
base := baseClient{opt: opt, connPool: pool}
2015-01-24 15:12:48 +03:00
return &Client{
baseClient: base,
commandable: commandable{
process: base.process,
},
2015-01-24 15:12:48 +03:00
}
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.
func NewClient(opt *Options) *Client {
return newClient(opt, newConnPool(opt))
}
2016-01-19 19:36:40 +03:00
// PoolStats returns connection pool stats.
2016-01-19 19:36:40 +03:00
func (c *Client) PoolStats() *PoolStats {
s := c.connPool.Stats()
return &PoolStats{
Requests: atomic.LoadUint32(&s.Requests),
Hits: atomic.LoadUint32(&s.Hits),
Waits: atomic.LoadUint32(&s.Waits),
Timeouts: atomic.LoadUint32(&s.Timeouts),
TotalConns: atomic.LoadUint32(&s.TotalConns),
FreeConns: atomic.LoadUint32(&s.FreeConns),
}
2016-01-19 19:36:40 +03:00
}