redis.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package share
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/library/cache/redis"
  6. "go-common/library/log"
  7. )
  8. const _keySha = "sm_%d"
  9. func keyShare(mid int64) string {
  10. return fmt.Sprintf(_keySha, mid)
  11. }
  12. // SharesCache get shares from cache.
  13. func (d *Dao) SharesCache(c context.Context, mid int64) (res map[string]int64, err error) {
  14. var (
  15. key = keyShare(mid)
  16. conn = d.redis.Get(c)
  17. )
  18. defer conn.Close()
  19. if res, err = redis.Int64Map(conn.Do("HGETALL", key)); err != nil {
  20. log.Error("HGETALL %v failed error(%v)", key, err)
  21. }
  22. return
  23. }
  24. // SetSharesCache back cache from db.
  25. func (d *Dao) SetSharesCache(c context.Context, expire int, mid int64, shares map[string]int64) (err error) {
  26. var (
  27. key = keyShare(mid)
  28. conn = d.redis.Get(c)
  29. )
  30. defer conn.Close()
  31. args := redis.Args{}.Add(key)
  32. for k, v := range shares {
  33. args = args.Add(k).Add(v)
  34. }
  35. if err = conn.Send("HMSET", args...); err != nil {
  36. log.Error("conn.Send(HMSET, %s, %d) error(%v)", key, err)
  37. return
  38. }
  39. if err = conn.Send("EXPIRE", key, expire); err != nil {
  40. log.Error("conn.Send(Expire, %s, %d) error(%v)", key, expire, err)
  41. return
  42. }
  43. if err = conn.Flush(); err != nil {
  44. log.Error("conn.Flush error(%v)", err)
  45. return
  46. }
  47. for i := 0; i < 2; i++ {
  48. if _, err = conn.Receive(); err != nil {
  49. log.Error("conn.Receive() error(%v)", err)
  50. return
  51. }
  52. }
  53. return
  54. }