mirror of
https://github.com/redis/go-redis.git
synced 2025-04-17 20:17:02 +03:00
fix add missing command in interface (#3344)
This commit is contained in:
parent
6e07177495
commit
93bc3e6140
@ -13,6 +13,7 @@ type HashCmdable interface {
|
|||||||
HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
|
HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
|
||||||
HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
|
HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
|
||||||
HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
|
HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
|
||||||
|
HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
|
||||||
HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
|
HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
|
||||||
HKeys(ctx context.Context, key string) *StringSliceCmd
|
HKeys(ctx context.Context, key string) *StringSliceCmd
|
||||||
HLen(ctx context.Context, key string) *IntCmd
|
HLen(ctx context.Context, key string) *IntCmd
|
||||||
|
Loading…
x
Reference in New Issue
Block a user