12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package kfc
- import (
- "time"
- "go-common/app/interface/main/activity/conf"
- "go-common/library/cache/memcache"
- xsql "go-common/library/database/sql"
- "go-common/library/log"
- httpx "go-common/library/net/http/blademaster"
- "go-common/library/stat/prom"
- )
- const (
- _kfcWinnerURI = "/gift/v4/Smalltv/getKfcWinnerById"
- )
- // PromError stat and log.
- func PromError(name string, format string, args ...interface{}) {
- prom.BusinessErrCount.Incr(name)
- log.Error(format, args...)
- }
- // Dao dao.
- type Dao struct {
- mc *memcache.Pool
- db *xsql.DB
- client *httpx.Client
- mcKfcExpire int32
- mcKfcCodeExpire int32
- kfcWinnerURL string
- }
- // New dao new.
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- mc: memcache.NewPool(c.Memcache.Like),
- db: xsql.NewMySQL(c.MySQL.Like),
- client: httpx.NewClient(c.HTTPClientKfc),
- mcKfcExpire: int32(time.Duration(c.Memcache.KfcExpire) / time.Second),
- mcKfcCodeExpire: int32(time.Duration(c.Memcache.KfcCodeExpire) / time.Second),
- kfcWinnerURL: c.Host.LiveCo + _kfcWinnerURI,
- }
- return
- }
- // Close Dao
- func (d *Dao) Close() {
- if d.db != nil {
- d.db.Close()
- }
- if d.mc != nil {
- d.mc.Close()
- }
- }
|