dao.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package archive
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/service/main/videoup/conf"
  6. "go-common/app/service/main/videoup/model/archive"
  7. "go-common/library/cache/memcache"
  8. "go-common/library/cache/redis"
  9. "go-common/library/database/sql"
  10. "go-common/library/sync/pipeline/fanout"
  11. )
  12. // Dao is redis dao.
  13. type Dao struct {
  14. c *conf.Config
  15. // db
  16. db *sql.DB
  17. rddb *sql.DB
  18. slaveDB *sql.DB
  19. redis *redis.Pool
  20. cache *fanout.Fanout
  21. mc *memcache.Pool
  22. }
  23. // New new a dao.
  24. func New(c *conf.Config) (d *Dao) {
  25. d = &Dao{
  26. c: c,
  27. db: sql.NewMySQL(c.DB.Archive),
  28. rddb: sql.NewMySQL(c.DB.ArchiveRead),
  29. slaveDB: sql.NewMySQL(c.DB.ArchiveSlave),
  30. redis: redis.NewPool(c.Redis.Track.Config),
  31. cache: fanout.New("cache"),
  32. mc: memcache.NewPool(c.Memcache.Archive.Config),
  33. }
  34. return d
  35. }
  36. // BeginTran begin transcation.
  37. func (d *Dao) BeginTran(c context.Context) (tx *sql.Tx, err error) {
  38. return d.db.Begin(c)
  39. }
  40. // Close close dao.
  41. func (d *Dao) Close() {
  42. if d.db != nil {
  43. d.db.Close()
  44. }
  45. }
  46. // Ping ping cpdb
  47. func (d *Dao) Ping(c context.Context) (err error) {
  48. return d.db.Ping(c)
  49. }
  50. func staffKey(aid int64) string {
  51. return fmt.Sprintf("staff_aid_%d", aid)
  52. }
  53. func (d *Dao) cacheSFStaffData(aid int64) string {
  54. return fmt.Sprintf("staff_aid_sf_%d", aid)
  55. }
  56. //go:generate $GOPATH/src/go-common/app/tool/cache/gen
  57. type _cache interface {
  58. // cache: -singleflight=true -nullcache=[]*archive.Staff{{ID:-1}} -check_null_code=len($)==1&&$[0].ID==-1
  59. StaffData(c context.Context, aid int64) ([]*archive.Staff, error)
  60. }
  61. //go:generate $GOPATH/src/go-common/app/tool/cache/mc
  62. type _mc interface {
  63. // mc: -key=staffKey
  64. CacheStaffData(c context.Context, key int64) ([]*archive.Staff, error)
  65. // 这里也支持自定义注释 会替换默认的注释
  66. // mc: -key=staffKey -expire=3 -encode=json|gzip
  67. AddCacheStaffData(c context.Context, key int64, value []*archive.Staff) error
  68. // mc: -key=staffKey
  69. DelCacheStaffData(c context.Context, key int64) error
  70. }