dao.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package show
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/app-show/conf"
  6. "go-common/library/cache/redis"
  7. "go-common/library/database/sql"
  8. )
  9. // Dao is show dao.
  10. type Dao struct {
  11. // mysql
  12. db *sql.DB
  13. getHead *sql.Stmt
  14. getItem *sql.Stmt
  15. getHeadTmp *sql.Stmt
  16. getItemTmp *sql.Stmt
  17. // redis
  18. rcmmndRds *redis.Pool
  19. rcmmndExp int
  20. }
  21. // New new a show dao.
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. // mysql
  25. db: sql.NewMySQL(c.MySQL.Show),
  26. // redis
  27. rcmmndRds: redis.NewPool(c.Redis.Recommend.Config),
  28. rcmmndExp: int(time.Duration(c.Redis.Recommend.Expire) / time.Second),
  29. }
  30. d.getHead = d.db.Prepared(_headSQL)
  31. d.getItem = d.db.Prepared(_itemSQL)
  32. d.getHeadTmp = d.db.Prepared(_headTmpSQL)
  33. d.getItemTmp = d.db.Prepared(_itemTmpSQL)
  34. return d
  35. }
  36. // Close close memcache resource.
  37. func (d *Dao) Close() (err error) {
  38. if d.rcmmndRds != nil {
  39. return d.rcmmndRds.Close()
  40. }
  41. return nil
  42. }
  43. func (d *Dao) Ping(c context.Context) (err error) {
  44. conn := d.rcmmndRds.Get(c)
  45. _, err = conn.Do("SET", "PING", "PONG")
  46. conn.Close()
  47. return
  48. }