redis.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/library/cache/redis"
  6. "go-common/library/log"
  7. )
  8. const (
  9. // r_<实验组名>_<oid>_<type>
  10. // 用redis ZSet存储热门评论列表,score为热评分数,member为rpID
  11. _replyZSetFormat = "r_%s_%d_%d"
  12. )
  13. func keyReplyZSet(name string, oid int64, tp int) string {
  14. return fmt.Sprintf(_replyZSetFormat, name, oid, tp)
  15. }
  16. // PingRedis redis health check.
  17. func (d *Dao) PingRedis(ctx context.Context) (err error) {
  18. conn := d.redis.Get(ctx)
  19. defer conn.Close()
  20. _, err = conn.Do("SET", "ping", "pong")
  21. return
  22. }
  23. // ExpireReplyZSetRds expire reply list.
  24. func (d *Dao) ExpireReplyZSetRds(ctx context.Context, name string, oid int64, tp int) (ok bool, err error) {
  25. conn := d.redis.Get(ctx)
  26. defer conn.Close()
  27. key := keyReplyZSet(name, oid, tp)
  28. if ok, err = redis.Bool(conn.Do("EXPIRE", key, d.redisReplyZSetExpire)); err != nil {
  29. if err == redis.ErrNil {
  30. err = nil
  31. return
  32. }
  33. log.Error("redis EXPIRE key(%s) error(%v)", key, err)
  34. }
  35. return
  36. }
  37. // ReplyZSetRds get reply list from redis sorted set.
  38. func (d *Dao) ReplyZSetRds(ctx context.Context, name string, oid int64, tp, start, end int) (rpIDs []int64, err error) {
  39. conn := d.redis.Get(ctx)
  40. defer conn.Close()
  41. key := keyReplyZSet(name, oid, tp)
  42. values, err := redis.Values(conn.Do("ZREVRANGE", key, start, end))
  43. if err != nil {
  44. log.Error("redis ZREVRANGE(%s, %d, %d) error(%v)", key, start, end, err)
  45. return
  46. }
  47. if err = redis.ScanSlice(values, &rpIDs); err != nil {
  48. log.Error("redis ScanSlice(%v) error(%v)", values, err)
  49. }
  50. return
  51. }
  52. // CountReplyZSetRds count reply num.
  53. func (d *Dao) CountReplyZSetRds(ctx context.Context, name string, oid int64, tp int) (count int, err error) {
  54. conn := d.redis.Get(ctx)
  55. defer conn.Close()
  56. key := keyReplyZSet(name, oid, tp)
  57. if count, err = redis.Int(conn.Do("ZCARD", key)); err != nil {
  58. log.Error("conn.Do(ZCARD, %s) error(%v)", key, err)
  59. }
  60. return
  61. }