dao.go 1.0 KB

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