redis.go 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package recommend
  2. import (
  3. "context"
  4. "strconv"
  5. "go-common/library/cache/redis"
  6. "github.com/pkg/errors"
  7. )
  8. const (
  9. // _prefixPos is.
  10. _prefixPos = "p_"
  11. )
  12. // keyPos is.
  13. func keyPos(mid int64) string {
  14. return _prefixPos + strconv.FormatInt(mid%100000, 10)
  15. }
  16. // PositionCache is.
  17. func (d *Dao) PositionCache(c context.Context, mid int64) (pos int, err error) {
  18. var (
  19. key = keyPos(mid)
  20. conn = d.redis.Get(c)
  21. )
  22. defer conn.Close()
  23. if pos, err = redis.Int(conn.Do("HGET", key, mid)); err != nil {
  24. if err == redis.ErrNil {
  25. err = nil
  26. return
  27. }
  28. err = errors.Wrapf(err, "conn.Do(HGET,%s,%d)", key, mid)
  29. }
  30. return
  31. }
  32. // AddPositionCache is.
  33. func (d *Dao) AddPositionCache(c context.Context, mid int64, pos int) (err error) {
  34. var (
  35. key = keyPos(mid)
  36. conn = d.redis.Get(c)
  37. )
  38. defer conn.Close()
  39. if _, err = conn.Do("HSET", key, mid, pos); err != nil {
  40. err = errors.Wrapf(err, "conn.Do(HSET,%s,%d,%d)", key, mid, pos)
  41. }
  42. return
  43. }