case_redis.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "strconv"
  6. model "go-common/app/interface/main/credit/model"
  7. "go-common/library/cache/redis"
  8. )
  9. const (
  10. _voteOpIdx = "vo_%d_%d"
  11. _caseOpIdx = "caseop_"
  12. )
  13. func voteIndexKey(cid int64, otype int8) string {
  14. return fmt.Sprintf(_voteOpIdx, otype, cid)
  15. }
  16. func caseIndexKey(cid int64) string {
  17. return _caseOpIdx + strconv.FormatInt(cid, 10)
  18. }
  19. // VoteOpIdxCache get vote opinion index from cache.
  20. func (d *Dao) VoteOpIdxCache(c context.Context, cid, start, end int64, otype int8) (ids []int64, err error) {
  21. var (
  22. key = voteIndexKey(cid, otype)
  23. conn = d.redis.Get(c)
  24. )
  25. defer conn.Close()
  26. ids, err = redis.Int64s(conn.Do("LRANGE", key, start, end))
  27. return
  28. }
  29. // ExpireVoteIdx expire vote idx.
  30. func (d *Dao) ExpireVoteIdx(c context.Context, cid int64, otype int8) (ok bool, err error) {
  31. conn := d.redis.Get(c)
  32. defer conn.Close()
  33. ok, err = redis.Bool(conn.Do("EXPIRE", voteIndexKey(cid, otype), d.redisExpire))
  34. return
  35. }
  36. // LenVoteIdx get lenth of vote index.
  37. func (d *Dao) LenVoteIdx(c context.Context, cid int64, otype int8) (count int, err error) {
  38. conn := d.redis.Get(c)
  39. defer conn.Close()
  40. count, err = redis.Int(conn.Do("LLEN", voteIndexKey(cid, otype)))
  41. return
  42. }
  43. // CaseOpIdxCache get case opinion index from cache.
  44. func (d *Dao) CaseOpIdxCache(c context.Context, cid, start, end int64) (ids []int64, err error) {
  45. var (
  46. key = caseIndexKey(cid)
  47. conn = d.redis.Get(c)
  48. )
  49. defer conn.Close()
  50. ids, err = redis.Int64s(conn.Do("ZREVRANGE", key, start, end))
  51. return
  52. }
  53. // LenCaseIdx get lenth of vote index.
  54. func (d *Dao) LenCaseIdx(c context.Context, cid int64) (count int, err error) {
  55. conn := d.redis.Get(c)
  56. defer conn.Close()
  57. count, err = redis.Int(conn.Do("ZCARD", caseIndexKey(cid)))
  58. return
  59. }
  60. // ExpireCaseIdx expire case index cache.
  61. func (d *Dao) ExpireCaseIdx(c context.Context, cid int64) (ok bool, err error) {
  62. conn := d.redis.Get(c)
  63. defer conn.Close()
  64. ok, err = redis.Bool(conn.Do("EXPIRE", caseIndexKey(cid), d.redisExpire))
  65. return
  66. }
  67. // LoadVoteOpIdxs load vote opinion index into cache.
  68. func (d *Dao) LoadVoteOpIdxs(c context.Context, cid int64, otype int8, idx []int64) (err error) {
  69. var (
  70. ok bool
  71. key = voteIndexKey(cid, otype)
  72. conn = d.redis.Get(c)
  73. )
  74. defer conn.Close()
  75. if ok, err = redis.Bool(conn.Do("EXPIRE", key, d.redisExpire)); ok {
  76. return
  77. }
  78. for _, id := range idx {
  79. if err = conn.Send("LPUSH", key, id); err != nil {
  80. return
  81. }
  82. }
  83. if err = conn.Send("EXPIRE", key, d.redisExpire); err != nil {
  84. return
  85. }
  86. if err = conn.Flush(); err != nil {
  87. return
  88. }
  89. for i := 0; i < len(idx)+1; i++ {
  90. _, err = conn.Receive()
  91. }
  92. return
  93. }
  94. // LoadCaseIdxs load case opinion index into redis.
  95. func (d *Dao) LoadCaseIdxs(c context.Context, cid int64, ops []*model.Opinion) (err error) {
  96. key := caseIndexKey(cid)
  97. conn := d.redis.Get(c)
  98. defer conn.Close()
  99. for _, op := range ops {
  100. if err = conn.Send("ZADD", key, op.Like-op.Hate, op.OpID); err != nil {
  101. return
  102. }
  103. }
  104. if err = conn.Send("EXPIRE", key, d.redisExpire); err != nil {
  105. return
  106. }
  107. if err = conn.Flush(); err != nil {
  108. return
  109. }
  110. for i := 0; i < len(ops)+1; i++ {
  111. _, err = conn.Receive()
  112. }
  113. return
  114. }
  115. // DelCaseIdx DEL case opinion idx.
  116. func (d *Dao) DelCaseIdx(c context.Context, cid int64) (err error) {
  117. conn := d.redis.Get(c)
  118. defer conn.Close()
  119. _, err = conn.Do("DEL", caseIndexKey(cid))
  120. return
  121. }
  122. // DelVoteIdx DEL case opinion idx.
  123. func (d *Dao) DelVoteIdx(c context.Context, cid int64) (err error) {
  124. conn := d.redis.Get(c)
  125. defer conn.Close()
  126. if err = conn.Send("DEL", voteIndexKey(cid, 1)); err != nil {
  127. return
  128. }
  129. if err = conn.Send("DEL", voteIndexKey(cid, 2)); err != nil {
  130. return
  131. }
  132. conn.Flush()
  133. for i := 0; i < 2; i++ {
  134. conn.Receive()
  135. }
  136. return
  137. }