Skip to content

Commit

Permalink
Correct method accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
dim committed Mar 9, 2016
1 parent f7d4933 commit 9f40911
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions commands.go
Original file line number Diff line number Diff line change
@@ -583,7 +583,7 @@ func (c *commandable) SetNX(key string, value interface{}, expiration time.Durat
// Redis `SET key value [expiration] XX` command.
//
// Zero expiration means the key has no expiration time.
func (c *Client) SetXX(key string, value interface{}, expiration time.Duration) *BoolCmd {
func (c *commandable) SetXX(key string, value interface{}, expiration time.Duration) *BoolCmd {
var cmd *BoolCmd
if usePrecise(expiration) {
cmd = NewBoolCmd("SET", key, value, "PX", formatMs(expiration), "XX")
@@ -1282,7 +1282,7 @@ func (c *commandable) ZRevRangeByScore(key string, opt ZRangeByScore) *StringSli
return c.zRevRangeBy("ZREVRANGEBYSCORE", key, opt)
}

func (c commandable) ZRevRangeByLex(key string, opt ZRangeByScore) *StringSliceCmd {
func (c *commandable) ZRevRangeByLex(key string, opt ZRangeByScore) *StringSliceCmd {
return c.zRevRangeBy("ZREVRANGEBYLEX", key, opt)
}

2 changes: 1 addition & 1 deletion pipeline.go
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ import (
type Pipeline struct {
commandable

client *baseClient
client baseClient

mu sync.Mutex // protects cmds
cmds []Cmder
4 changes: 2 additions & 2 deletions redis.go
Original file line number Diff line number Diff line change
@@ -183,12 +183,12 @@ func (opt *Options) getIdleTimeout() time.Duration {
// underlying connections. It's safe for concurrent use by multiple
// goroutines.
type Client struct {
*baseClient
baseClient
commandable
}

func newClient(opt *Options, pool pool) *Client {
base := &baseClient{opt: opt, connPool: pool}
base := baseClient{opt: opt, connPool: pool}
return &Client{
baseClient: base,
commandable: commandable{process: base.process},

0 comments on commit 9f40911

Please sign in to comment.