12345678910111213141516171819202122 |
- package dede
- import (
- "go-common/app/service/main/videoup/conf"
- "go-common/library/cache/redis"
- )
- // Dao is redis dao.
- type Dao struct {
- c *conf.Config
- // redis
- redis *redis.Pool
- }
- // New new
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- c: c,
- redis: redis.NewPool(c.Redis.Track.Config),
- }
- return d
- }
|