dao.go 320 B

12345678910111213141516171819202122
  1. package dede
  2. import (
  3. "go-common/app/service/main/videoup/conf"
  4. "go-common/library/cache/redis"
  5. )
  6. // Dao is redis dao.
  7. type Dao struct {
  8. c *conf.Config
  9. // redis
  10. redis *redis.Pool
  11. }
  12. // New new
  13. func New(c *conf.Config) (d *Dao) {
  14. d = &Dao{
  15. c: c,
  16. redis: redis.NewPool(c.Redis.Track.Config),
  17. }
  18. return d
  19. }