You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
421 B
26 lines
421 B
package redis |
|
|
|
import ( |
|
"go-common/app/job/main/videoup/conf" |
|
xredis "go-common/library/cache/redis" |
|
) |
|
|
|
// Dao is redis dao. |
|
type Dao struct { |
|
c *conf.Config |
|
redis *xredis.Pool |
|
} |
|
|
|
// New new a archive dao. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
c: c, |
|
redis: xredis.NewPool(c.Redis), |
|
} |
|
return d |
|
} |
|
|
|
// Close close the redis connection |
|
func (d *Dao) Close() (err error) { |
|
return d.redis.Close() |
|
}
|
|
|