blocked_redis.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/credit/model"
  6. "go-common/library/cache/redis"
  7. "go-common/library/log"
  8. )
  9. const (
  10. _blockIdx = "bl_%d_%d"
  11. )
  12. func blockIndexKey(otype, btype int8) string {
  13. return fmt.Sprintf(_blockIdx, otype, btype)
  14. }
  15. // BlockedIdxCache get block list idx.
  16. func (d *Dao) BlockedIdxCache(c context.Context, otype, btype int8, start, end int) (ids []int64, err error) {
  17. key := blockIndexKey(otype, btype)
  18. conn := d.redis.Get(c)
  19. if ids, err = redis.Int64s(conn.Do("ZREVRANGE", key, start, end)); err != nil {
  20. log.Info("Redis.ZREVRANGE err(%v)", err)
  21. }
  22. conn.Close()
  23. return
  24. }
  25. // ExpireBlockedIdx expire case index cache.
  26. func (d *Dao) ExpireBlockedIdx(c context.Context, otype, btype int8) (ok bool, err error) {
  27. conn := d.redis.Get(c)
  28. defer conn.Close()
  29. if ok, err = redis.Bool(conn.Do("EXPIRE", blockIndexKey(otype, btype), d.redisExpire)); err != nil {
  30. log.Error("redis.bool err(%v)", err)
  31. }
  32. return
  33. }
  34. // LoadBlockedIdx laod blocked info index.
  35. func (d *Dao) LoadBlockedIdx(c context.Context, otype, btype int8, infos []*model.BlockedInfo) (err error) {
  36. key := blockIndexKey(otype, btype)
  37. conn := d.redis.Get(c)
  38. defer conn.Close()
  39. for _, info := range infos {
  40. if err = conn.Send("ZADD", key, info.PublishTime, info.ID); err != nil {
  41. log.Error("ZADD err(%v)", err)
  42. return
  43. }
  44. }
  45. if err = conn.Send("EXPIRE", key, d.redisExpire); err != nil {
  46. log.Error("EXPIRE err(%v)", err)
  47. return
  48. }
  49. if err = conn.Flush(); err != nil {
  50. return
  51. }
  52. for i := 0; i < len(infos)+1; i++ {
  53. if _, err = conn.Receive(); err != nil {
  54. return
  55. }
  56. }
  57. return
  58. }