dao.go 987 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package dao
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/captcha/conf"
  6. "go-common/library/cache/memcache"
  7. )
  8. // Dao captcha service Dao.
  9. type Dao struct {
  10. conf *conf.Config
  11. memcache *memcache.Pool
  12. mcExpire int32
  13. }
  14. // New new a captcha dao.
  15. func New(c *conf.Config) (d *Dao) {
  16. d = &Dao{
  17. conf: c,
  18. memcache: memcache.NewPool(c.Memcache.Config),
  19. mcExpire: int32(time.Duration(c.Memcache.Expire) / time.Second),
  20. }
  21. return d
  22. }
  23. // Ping captcha service health check, connection is ok.
  24. func (d *Dao) Ping(c context.Context) (err error) {
  25. // return d.pingRedis(c)
  26. return d.pingMemcache(c)
  27. }
  28. // pingMemcache check Memcache health.
  29. func (d *Dao) pingMemcache(c context.Context) (err error) {
  30. conn := d.memcache.Get(c)
  31. item := memcache.Item{Key: "ping", Value: []byte{1}, Expiration: d.mcExpire}
  32. err = conn.Set(&item)
  33. conn.Close()
  34. return
  35. }
  36. // Close close captcha all connection.
  37. func (d *Dao) Close() {
  38. if d.memcache != nil {
  39. d.memcache.Close()
  40. }
  41. }