dao.go 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package upper
  2. import (
  3. "runtime"
  4. "time"
  5. "go-common/app/interface/main/tv/conf"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/database/sql"
  8. "go-common/library/log"
  9. "go-common/library/stat/prom"
  10. )
  11. var (
  12. missedCount = prom.CacheMiss
  13. cachedCount = prom.CacheHit
  14. )
  15. // Dao is account dao.
  16. type Dao struct {
  17. mc *memcache.Pool
  18. mcExpire int32
  19. DB *sql.DB
  20. mCh chan func()
  21. }
  22. // New account dao.
  23. func New(c *conf.Config) (d *Dao) {
  24. d = &Dao{
  25. mc: memcache.NewPool(c.Memcache.Config),
  26. mcExpire: int32(time.Duration(c.Memcache.CmsExpire) / time.Second),
  27. DB: sql.NewMySQL(c.Mysql),
  28. mCh: make(chan func(), 10240),
  29. }
  30. for i := 0; i < runtime.NumCPU()*2; i++ {
  31. go d.cacheproc()
  32. }
  33. return
  34. }
  35. // addCache add archive to mc or redis
  36. func (d *Dao) addCache(f func()) {
  37. select {
  38. case d.mCh <- f:
  39. default:
  40. log.Warn("cacheproc chan full")
  41. }
  42. }
  43. // cacheproc write memcache and stat redis use goroutine
  44. func (d *Dao) cacheproc() {
  45. for {
  46. f := <-d.mCh
  47. f()
  48. }
  49. }