12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748 |
- package redis
- import (
- "errors"
- "fmt"
- "strconv"
- "time"
- red "github.com/go-redis/redis"
- "github.com/tal-tech/go-zero/core/breaker"
- "github.com/tal-tech/go-zero/core/mapping"
- )
- const (
- // ClusterType means redis cluster.
- ClusterType = "cluster"
- // NodeType means redis node.
- NodeType = "node"
- // Nil is an alias of redis.Nil.
- Nil = red.Nil
- blockingQueryTimeout = 5 * time.Second
- readWriteTimeout = 2 * time.Second
- slowThreshold = time.Millisecond * 100
- )
- // ErrNilNode is an error that indicates a nil redis node.
- var ErrNilNode = errors.New("nil redis node")
- type (
- // A Pair is a key/pair set used in redis zset.
- Pair struct {
- Key string
- Score int64
- }
- // Redis defines a redis node/cluster. It is thread-safe.
- Redis struct {
- Addr string
- Type string
- Pass string
- brk breaker.Breaker
- }
- // RedisNode interface represents a redis node.
- RedisNode interface {
- red.Cmdable
- }
- // GeoLocation is used with GeoAdd to add geospatial location.
- GeoLocation = red.GeoLocation
- // GeoRadiusQuery is used with GeoRadius to query geospatial index.
- GeoRadiusQuery = red.GeoRadiusQuery
- // GeoPos is used to represent a geo position.
- GeoPos = red.GeoPos
- // Pipeliner is an alias of redis.Pipeliner.
- Pipeliner = red.Pipeliner
- // Z represents sorted set member.
- Z = red.Z
- // ZStore is an alias of redis.ZStore.
- ZStore = red.ZStore
- // IntCmd is an alias of redis.IntCmd.
- IntCmd = red.IntCmd
- // FloatCmd is an alias of redis.FloatCmd.
- FloatCmd = red.FloatCmd
- )
- // NewRedis returns a Redis.
- func NewRedis(redisAddr, redisType string, redisPass ...string) *Redis {
- var pass string
- for _, v := range redisPass {
- pass = v
- }
- return &Redis{
- Addr: redisAddr,
- Type: redisType,
- Pass: pass,
- brk: breaker.NewBreaker(),
- }
- }
- // BitCount is redis bitcount command implementation.
- func (s *Redis) BitCount(key string, start, end int64) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitCount(key, &red.BitCount{
- Start: start,
- End: end,
- }).Result()
- return err
- }, acceptable)
- return
- }
- // BitOpAnd is redis bit operation (and) command implementation.
- func (s *Redis) BitOpAnd(destKey string, keys ...string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitOpAnd(destKey, keys...).Result()
- return err
- }, acceptable)
- return
- }
- // BitOpNot is redis bit operation (not) command implementation.
- func (s *Redis) BitOpNot(destKey, key string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitOpNot(destKey, key).Result()
- return err
- }, acceptable)
- return
- }
- // BitOpOr is redis bit operation (or) command implementation.
- func (s *Redis) BitOpOr(destKey string, keys ...string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitOpOr(destKey, keys...).Result()
- return err
- }, acceptable)
- return
- }
- // BitOpXor is redis bit operation (xor) command implementation.
- func (s *Redis) BitOpXor(destKey string, keys ...string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitOpXor(destKey, keys...).Result()
- return err
- }, acceptable)
- return
- }
- // BitPos is redis bitpos command implementation.
- func (s *Redis) BitPos(key string, bit int64, start, end int64) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.BitPos(key, bit, start, end).Result()
- return err
- }, acceptable)
- return
- }
- // Blpop uses passed in redis connection to execute blocking queries.
- // Doesn't benefit from pooling redis connections of blocking queries
- func (s *Redis) Blpop(redisNode RedisNode, key string) (string, error) {
- if redisNode == nil {
- return "", ErrNilNode
- }
- vals, err := redisNode.BLPop(blockingQueryTimeout, key).Result()
- if err != nil {
- return "", err
- }
- if len(vals) < 2 {
- return "", fmt.Errorf("no value on key: %s", key)
- }
- return vals[1], nil
- }
- // BlpopEx uses passed in redis connection to execute blpop command.
- // The difference against Blpop is that this method returns a bool to indicate success.
- func (s *Redis) BlpopEx(redisNode RedisNode, key string) (string, bool, error) {
- if redisNode == nil {
- return "", false, ErrNilNode
- }
- vals, err := redisNode.BLPop(blockingQueryTimeout, key).Result()
- if err != nil {
- return "", false, err
- }
- if len(vals) < 2 {
- return "", false, fmt.Errorf("no value on key: %s", key)
- }
- return vals[1], true, nil
- }
- // Del deletes keys.
- func (s *Redis) Del(keys ...string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.Del(keys...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Eval is the implementation of redis eval command.
- func (s *Redis) Eval(script string, keys []string, args ...interface{}) (val interface{}, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.Eval(script, keys, args...).Result()
- return err
- }, acceptable)
- return
- }
- // Eval is the implementation of redis eval command.
- func (s *Redis) EvalSha(script string, keys []string, args ...interface{}) (val interface{}, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.EvalSha(script, keys, args...).Result()
- return err
- }, acceptable)
- return
- }
- // Exists is the implementation of redis exists command.
- func (s *Redis) Exists(key string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.Exists(key).Result()
- if err != nil {
- return err
- }
- val = v == 1
- return nil
- }, acceptable)
- return
- }
- // Expire is the implementation of redis expire command.
- func (s *Redis) Expire(key string, seconds int) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- return conn.Expire(key, time.Duration(seconds)*time.Second).Err()
- }, acceptable)
- }
- // Expireat is the implementation of redis expireat command.
- func (s *Redis) Expireat(key string, expireTime int64) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- return conn.ExpireAt(key, time.Unix(expireTime, 0)).Err()
- }, acceptable)
- }
- // GeoAdd is the implementation of redis geoadd command.
- func (s *Redis) GeoAdd(key string, geoLocation ...*GeoLocation) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoAdd(key, geoLocation...).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // GeoDist is the implementation of redis geodist command.
- func (s *Redis) GeoDist(key string, member1, member2, unit string) (val float64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoDist(key, member1, member2, unit).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // GeoHash is the implementation of redis geohash command.
- func (s *Redis) GeoHash(key string, members ...string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoHash(key, members...).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // GeoRadius is the implementation of redis georadius command.
- func (s *Redis) GeoRadius(key string, longitude, latitude float64, query *GeoRadiusQuery) (val []GeoLocation, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoRadius(key, longitude, latitude, query).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // GeoRadiusByMember is the implementation of redis georadiusbymember command.
- func (s *Redis) GeoRadiusByMember(key, member string, query *GeoRadiusQuery) (val []GeoLocation, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoRadiusByMember(key, member, query).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // GeoPos is the implementation of redis geopos command.
- func (s *Redis) GeoPos(key string, members ...string) (val []*GeoPos, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GeoPos(key, members...).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // Get is the implementation of redis get command.
- func (s *Redis) Get(key string) (val string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- if val, err = conn.Get(key).Result(); err == red.Nil {
- return nil
- } else if err != nil {
- return err
- } else {
- return nil
- }
- }, acceptable)
- return
- }
- // GetBit is the implementation of redis getbit command.
- func (s *Redis) GetBit(key string, offset int64) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.GetBit(key, offset).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Hdel is the implementation of redis hdel command.
- func (s *Redis) Hdel(key, field string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.HDel(key, field).Result()
- if err != nil {
- return err
- }
- val = v == 1
- return nil
- }, acceptable)
- return
- }
- // Hexists is the implementation of redis hexists command.
- func (s *Redis) Hexists(key, field string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HExists(key, field).Result()
- return err
- }, acceptable)
- return
- }
- // Hget is the implementation of redis hget command.
- func (s *Redis) Hget(key, field string) (val string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HGet(key, field).Result()
- return err
- }, acceptable)
- return
- }
- // Hgetall is the implementation of redis hgetall command.
- func (s *Redis) Hgetall(key string) (val map[string]string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HGetAll(key).Result()
- return err
- }, acceptable)
- return
- }
- // Hincrby is the implementation of redis hincrby command.
- func (s *Redis) Hincrby(key, field string, increment int) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.HIncrBy(key, field, int64(increment)).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Hkeys is the implementation of redis hkeys command.
- func (s *Redis) Hkeys(key string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HKeys(key).Result()
- return err
- }, acceptable)
- return
- }
- // Hlen is the implementation of redis hlen command.
- func (s *Redis) Hlen(key string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.HLen(key).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Hmget is the implementation of redis hmget command.
- func (s *Redis) Hmget(key string, fields ...string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.HMGet(key, fields...).Result()
- if err != nil {
- return err
- }
- val = toStrings(v)
- return nil
- }, acceptable)
- return
- }
- // Hset is the implementation of redis hset command.
- func (s *Redis) Hset(key, field, value string) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- return conn.HSet(key, field, value).Err()
- }, acceptable)
- }
- // Hsetnx is the implementation of redis hsetnx command.
- func (s *Redis) Hsetnx(key, field, value string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HSetNX(key, field, value).Result()
- return err
- }, acceptable)
- return
- }
- // Hmset is the implementation of redis hmset command.
- func (s *Redis) Hmset(key string, fieldsAndValues map[string]string) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- vals := make(map[string]interface{}, len(fieldsAndValues))
- for k, v := range fieldsAndValues {
- vals[k] = v
- }
- return conn.HMSet(key, vals).Err()
- }, acceptable)
- }
- // Hscan is the implementation of redis hscan command.
- func (s *Redis) Hscan(key string, cursor uint64, match string, count int64) (keys []string, cur uint64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- keys, cur, err = conn.HScan(key, cursor, match, count).Result()
- return err
- }, acceptable)
- return
- }
- // Hvals is the implementation of redis hvals command.
- func (s *Redis) Hvals(key string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.HVals(key).Result()
- return err
- }, acceptable)
- return
- }
- // Incr is the implementation of redis incr command.
- func (s *Redis) Incr(key string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.Incr(key).Result()
- return err
- }, acceptable)
- return
- }
- // Incrby is the implementation of redis incrby command.
- func (s *Redis) Incrby(key string, increment int64) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.IncrBy(key, int64(increment)).Result()
- return err
- }, acceptable)
- return
- }
- // Keys is the implementation of redis keys command.
- func (s *Redis) Keys(pattern string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.Keys(pattern).Result()
- return err
- }, acceptable)
- return
- }
- // Llen is the implementation of redis llen command.
- func (s *Redis) Llen(key string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.LLen(key).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Lpop is the implementation of redis lpop command.
- func (s *Redis) Lpop(key string) (val string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.LPop(key).Result()
- return err
- }, acceptable)
- return
- }
- // Lpush is the implementation of redis lpush command.
- func (s *Redis) Lpush(key string, values ...interface{}) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.LPush(key, values...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Lrange is the implementation of redis lrange command.
- func (s *Redis) Lrange(key string, start int, stop int) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.LRange(key, int64(start), int64(stop)).Result()
- return err
- }, acceptable)
- return
- }
- // Lrem is the implementation of redis lrem command.
- func (s *Redis) Lrem(key string, count int, value string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.LRem(key, int64(count), value).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Mget is the implementation of redis mget command.
- func (s *Redis) Mget(keys ...string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.MGet(keys...).Result()
- if err != nil {
- return err
- }
- val = toStrings(v)
- return nil
- }, acceptable)
- return
- }
- // Persist is the implementation of redis persist command.
- func (s *Redis) Persist(key string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.Persist(key).Result()
- return err
- }, acceptable)
- return
- }
- // Pfadd is the implementation of redis pfadd command.
- func (s *Redis) Pfadd(key string, values ...interface{}) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.PFAdd(key, values...).Result()
- if err != nil {
- return err
- }
- val = v == 1
- return nil
- }, acceptable)
- return
- }
- // Pfcount is the implementation of redis pfcount command.
- func (s *Redis) Pfcount(key string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.PFCount(key).Result()
- return err
- }, acceptable)
- return
- }
- // Pfmerge is the implementation of redis pfmerge command.
- func (s *Redis) Pfmerge(dest string, keys ...string) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- _, err = conn.PFMerge(dest, keys...).Result()
- return err
- }, acceptable)
- }
- // Ping is the implementation of redis ping command.
- func (s *Redis) Ping() (val bool) {
- // ignore error, error means false
- _ = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- val = false
- return nil
- }
- v, err := conn.Ping().Result()
- if err != nil {
- val = false
- return nil
- }
- val = v == "PONG"
- return nil
- }, acceptable)
- return
- }
- // Pipelined lets fn to execute pipelined commands.
- func (s *Redis) Pipelined(fn func(Pipeliner) error) (err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- _, err = conn.Pipelined(fn)
- return err
- }, acceptable)
- return
- }
- // Rpop is the implementation of redis rpop command.
- func (s *Redis) Rpop(key string) (val string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.RPop(key).Result()
- return err
- }, acceptable)
- return
- }
- // Rpush is the implementation of redis rpush command.
- func (s *Redis) Rpush(key string, values ...interface{}) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.RPush(key, values...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Sadd is the implementation of redis sadd command.
- func (s *Redis) Sadd(key string, values ...interface{}) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.SAdd(key, values...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Scan is the implementation of redis scan command.
- func (s *Redis) Scan(cursor uint64, match string, count int64) (keys []string, cur uint64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- keys, cur, err = conn.Scan(cursor, match, count).Result()
- return err
- }, acceptable)
- return
- }
- // SetBit is the implementation of redis setbit command.
- func (s *Redis) SetBit(key string, offset int64, value int) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- _, err = conn.SetBit(key, offset, value).Result()
- return err
- }, acceptable)
- }
- // Sscan is the implementation of redis sscan command.
- func (s *Redis) Sscan(key string, cursor uint64, match string, count int64) (keys []string, cur uint64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- keys, cur, err = conn.SScan(key, cursor, match, count).Result()
- return err
- }, acceptable)
- return
- }
- // Scard is the implementation of redis scard command.
- func (s *Redis) Scard(key string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SCard(key).Result()
- return err
- }, acceptable)
- return
- }
- // Set is the implementation of redis set command.
- func (s *Redis) Set(key string, value string) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- return conn.Set(key, value, 0).Err()
- }, acceptable)
- }
- // Setex is the implementation of redis setex command.
- func (s *Redis) Setex(key, value string, seconds int) error {
- return s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- return conn.Set(key, value, time.Duration(seconds)*time.Second).Err()
- }, acceptable)
- }
- // Setnx is the implementation of redis setnx command.
- func (s *Redis) Setnx(key, value string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SetNX(key, value, 0).Result()
- return err
- }, acceptable)
- return
- }
- // SetnxEx is the implementation of redis setnx command with expire.
- func (s *Redis) SetnxEx(key, value string, seconds int) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SetNX(key, value, time.Duration(seconds)*time.Second).Result()
- return err
- }, acceptable)
- return
- }
- // Sismember is the implementation of redis sismember command.
- func (s *Redis) Sismember(key string, value interface{}) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SIsMember(key, value).Result()
- return err
- }, acceptable)
- return
- }
- // Srem is the implementation of redis srem command.
- func (s *Redis) Srem(key string, values ...interface{}) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.SRem(key, values...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Smembers is the implementation of redis smembers command.
- func (s *Redis) Smembers(key string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SMembers(key).Result()
- return err
- }, acceptable)
- return
- }
- // Spop is the implementation of redis spop command.
- func (s *Redis) Spop(key string) (val string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SPop(key).Result()
- return err
- }, acceptable)
- return
- }
- // Srandmember is the implementation of redis srandmember command.
- func (s *Redis) Srandmember(key string, count int) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SRandMemberN(key, int64(count)).Result()
- return err
- }, acceptable)
- return
- }
- // Sunion is the implementation of redis sunion command.
- func (s *Redis) Sunion(keys ...string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SUnion(keys...).Result()
- return err
- }, acceptable)
- return
- }
- // Sunionstore is the implementation of redis sunionstore command.
- func (s *Redis) Sunionstore(destination string, keys ...string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.SUnionStore(destination, keys...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Sdiff is the implementation of redis sdiff command.
- func (s *Redis) Sdiff(keys ...string) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.SDiff(keys...).Result()
- return err
- }, acceptable)
- return
- }
- // Sdiffstore is the implementation of redis sdiffstore command.
- func (s *Redis) Sdiffstore(destination string, keys ...string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.SDiffStore(destination, keys...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Ttl is the implementation of redis ttl command.
- func (s *Redis) Ttl(key string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- duration, err := conn.TTL(key).Result()
- if err != nil {
- return err
- }
- val = int(duration / time.Second)
- return nil
- }, acceptable)
- return
- }
- // Zadd is the implementation of redis zadd command.
- func (s *Redis) Zadd(key string, score int64, value string) (val bool, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZAdd(key, red.Z{
- Score: float64(score),
- Member: value,
- }).Result()
- if err != nil {
- return err
- }
- val = v == 1
- return nil
- }, acceptable)
- return
- }
- // Zadds is the implementation of redis zadds command.
- func (s *Redis) Zadds(key string, ps ...Pair) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- var zs []red.Z
- for _, p := range ps {
- z := red.Z{Score: float64(p.Score), Member: p.Key}
- zs = append(zs, z)
- }
- v, err := conn.ZAdd(key, zs...).Result()
- if err != nil {
- return err
- }
- val = v
- return nil
- }, acceptable)
- return
- }
- // Zcard is the implementation of redis zcard command.
- func (s *Redis) Zcard(key string) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZCard(key).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Zcount is the implementation of redis zcount command.
- func (s *Redis) Zcount(key string, start, stop int64) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZCount(key, strconv.FormatInt(start, 10), strconv.FormatInt(stop, 10)).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Zincrby is the implementation of redis zincrby command.
- func (s *Redis) Zincrby(key string, increment int64, field string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZIncrBy(key, float64(increment), field).Result()
- if err != nil {
- return err
- }
- val = int64(v)
- return nil
- }, acceptable)
- return
- }
- // Zscore is the implementation of redis zscore command.
- func (s *Redis) Zscore(key string, value string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZScore(key, value).Result()
- if err != nil {
- return err
- }
- val = int64(v)
- return nil
- }, acceptable)
- return
- }
- // Zrank is the implementation of redis zrank command.
- func (s *Redis) Zrank(key, field string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.ZRank(key, field).Result()
- return err
- }, acceptable)
- return
- }
- // Zrem is the implementation of redis zrem command.
- func (s *Redis) Zrem(key string, values ...interface{}) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRem(key, values...).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Zremrangebyscore is the implementation of redis zremrangebyscore command.
- func (s *Redis) Zremrangebyscore(key string, start, stop int64) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRemRangeByScore(key, strconv.FormatInt(start, 10),
- strconv.FormatInt(stop, 10)).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Zremrangebyrank is the implementation of redis zremrangebyrank command.
- func (s *Redis) Zremrangebyrank(key string, start, stop int64) (val int, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRemRangeByRank(key, start, stop).Result()
- if err != nil {
- return err
- }
- val = int(v)
- return nil
- }, acceptable)
- return
- }
- // Zrange is the implementation of redis zrange command.
- func (s *Redis) Zrange(key string, start, stop int64) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.ZRange(key, start, stop).Result()
- return err
- }, acceptable)
- return
- }
- // ZrangeWithScores is the implementation of redis zrange command with scores.
- func (s *Redis) ZrangeWithScores(key string, start, stop int64) (val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRangeWithScores(key, start, stop).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // ZRevRangeWithScores is the implementation of redis zrevrange command with scores.
- func (s *Redis) ZRevRangeWithScores(key string, start, stop int64) (val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRevRangeWithScores(key, start, stop).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // ZrangebyscoreWithScores is the implementation of redis zrangebyscore command with scores.
- func (s *Redis) ZrangebyscoreWithScores(key string, start, stop int64) (val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRangeByScoreWithScores(key, red.ZRangeBy{
- Min: strconv.FormatInt(start, 10),
- Max: strconv.FormatInt(stop, 10),
- }).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // ZrangebyscoreWithScoresAndLimit is the implementation of redis zrangebyscore command with scores and limit.
- func (s *Redis) ZrangebyscoreWithScoresAndLimit(key string, start, stop int64, page, size int) (
- val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- if size <= 0 {
- return nil
- }
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRangeByScoreWithScores(key, red.ZRangeBy{
- Min: strconv.FormatInt(start, 10),
- Max: strconv.FormatInt(stop, 10),
- Offset: int64(page * size),
- Count: int64(size),
- }).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // Zrevrange is the implementation of redis zrevrange command.
- func (s *Redis) Zrevrange(key string, start, stop int64) (val []string, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.ZRevRange(key, start, stop).Result()
- return err
- }, acceptable)
- return
- }
- // ZrevrangebyscoreWithScores is the implementation of redis zrevrangebyscore command with scores.
- func (s *Redis) ZrevrangebyscoreWithScores(key string, start, stop int64) (val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRevRangeByScoreWithScores(key, red.ZRangeBy{
- Min: strconv.FormatInt(start, 10),
- Max: strconv.FormatInt(stop, 10),
- }).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // ZrevrangebyscoreWithScoresAndLimit is the implementation of redis zrevrangebyscore command with scores and limit.
- func (s *Redis) ZrevrangebyscoreWithScoresAndLimit(key string, start, stop int64, page, size int) (
- val []Pair, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- if size <= 0 {
- return nil
- }
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- v, err := conn.ZRevRangeByScoreWithScores(key, red.ZRangeBy{
- Min: strconv.FormatInt(start, 10),
- Max: strconv.FormatInt(stop, 10),
- Offset: int64(page * size),
- Count: int64(size),
- }).Result()
- if err != nil {
- return err
- }
- val = toPairs(v)
- return nil
- }, acceptable)
- return
- }
- // Zrevrank is the implementation of redis zrevrank command.
- func (s *Redis) Zrevrank(key string, field string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.ZRevRank(key, field).Result()
- return err
- }, acceptable)
- return
- }
- // Zunionstore is the implementation of redis zunionstore command.
- func (s *Redis) Zunionstore(dest string, store ZStore, keys ...string) (val int64, err error) {
- err = s.brk.DoWithAcceptable(func() error {
- conn, err := getRedis(s)
- if err != nil {
- return err
- }
- val, err = conn.ZUnionStore(dest, store, keys...).Result()
- return err
- }, acceptable)
- return
- }
- // String returns the string representation of s.
- func (s *Redis) String() string {
- return s.Addr
- }
- func (s *Redis) ScriptLoad(script string) (string, error) {
- conn, err := getRedis(s)
- if err != nil {
- return "", err
- }
- return conn.ScriptLoad(script).Result()
- }
- func acceptable(err error) bool {
- return err == nil || err == red.Nil
- }
- func getRedis(r *Redis) (RedisNode, error) {
- switch r.Type {
- case ClusterType:
- return getCluster(r.Addr, r.Pass)
- case NodeType:
- return getClient(r.Addr, r.Pass)
- default:
- return nil, fmt.Errorf("redis type '%s' is not supported", r.Type)
- }
- }
- func toPairs(vals []red.Z) []Pair {
- pairs := make([]Pair, len(vals))
- for i, val := range vals {
- switch member := val.Member.(type) {
- case string:
- pairs[i] = Pair{
- Key: member,
- Score: int64(val.Score),
- }
- default:
- pairs[i] = Pair{
- Key: mapping.Repr(val.Member),
- Score: int64(val.Score),
- }
- }
- }
- return pairs
- }
- func toStrings(vals []interface{}) []string {
- ret := make([]string, len(vals))
- for i, val := range vals {
- if val == nil {
- ret[i] = ""
- } else {
- switch val := val.(type) {
- case string:
- ret[i] = val
- default:
- ret[i] = mapping.Repr(val)
- }
- }
- }
- return ret
- }
|