redis.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/openplatform/monitor-end/model"
  6. "go-common/library/cache/redis"
  7. "go-common/library/log"
  8. )
  9. func mailGroupKey(name string, t *model.Target, code string) string {
  10. return fmt.Sprintf("%s:%s", name, targetKey(t, code))
  11. }
  12. func targetKey(t *model.Target, code string) string {
  13. return fmt.Sprintf("%s_%s_%s_%s_%s", t.Source, t.Product, t.Event, t.SubEvent, code)
  14. }
  15. func (d *Dao) pingRedis(c context.Context) (err error) {
  16. conn := d.redis.Get(c)
  17. if _, err = conn.Do("SET", "PING", "PONG"); err != nil {
  18. log.Error("remote redis: conn.Do(SET,PING,PONG) error(%+v)", err)
  19. }
  20. conn.Close()
  21. return
  22. }
  23. // GetMailLock .
  24. func (d *Dao) GetMailLock(c context.Context, name string, interval int, t *model.Target, code string) (ok bool, err error) {
  25. if name == "" || interval == 0 {
  26. return
  27. }
  28. conn := d.redis.Get(c)
  29. defer conn.Close()
  30. key := mailGroupKey(name, t, code)
  31. if ok, err = redis.Bool(conn.Do("SETNX", key, "1")); err != nil {
  32. if err == redis.ErrNil {
  33. err = nil
  34. } else {
  35. log.Error("d.redis.conn.Do(SETNX(%s)) error(%v)", key, err)
  36. return
  37. }
  38. }
  39. if ok {
  40. conn.Do("EXPIRE", key, interval)
  41. }
  42. return
  43. }
  44. // TargetIncr get current target error amount.
  45. func (d *Dao) TargetIncr(c context.Context, t *model.Target, code string) (res int) {
  46. var (
  47. conn = d.redis.Get(c)
  48. err error
  49. key = targetKey(t, code)
  50. )
  51. defer conn.Close()
  52. if res, err = redis.Int(conn.Do("INCR", key)); err != nil {
  53. log.Error("d.redis.intr error(%+v)", err)
  54. return
  55. }
  56. if res == 1 {
  57. conn.Do("EXPIRE", key, t.Duration)
  58. }
  59. return
  60. }