Create & Init Project...
This commit is contained in:
59
app/interface/main/app-wall/service/wall/wall.go
Normal file
59
app/interface/main/app-wall/service/wall/wall.go
Normal file
@ -0,0 +1,59 @@
|
||||
package wall
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"go-common/app/interface/main/app-wall/conf"
|
||||
walldao "go-common/app/interface/main/app-wall/dao/wall"
|
||||
"go-common/app/interface/main/app-wall/model/wall"
|
||||
log "go-common/library/log"
|
||||
httpx "go-common/library/net/http/blademaster"
|
||||
)
|
||||
|
||||
type Service struct {
|
||||
c *conf.Config
|
||||
client *httpx.Client
|
||||
dao *walldao.Dao
|
||||
tick time.Duration
|
||||
cache []*wall.Wall
|
||||
testCache []*wall.Wall
|
||||
}
|
||||
|
||||
func New(c *conf.Config) (s *Service) {
|
||||
s = &Service{
|
||||
c: c,
|
||||
client: httpx.NewClient(c.HTTPClient),
|
||||
dao: walldao.New(c),
|
||||
tick: time.Duration(c.Tick),
|
||||
}
|
||||
s.load()
|
||||
go s.loadproc()
|
||||
return
|
||||
}
|
||||
|
||||
// GetWall All
|
||||
func (s *Service) Wall() (res []*wall.Wall) {
|
||||
res = s.cache
|
||||
return
|
||||
}
|
||||
|
||||
// load WallAll
|
||||
func (s *Service) load() {
|
||||
res, err := s.dao.WallAll(context.TODO())
|
||||
if err != nil {
|
||||
log.Error("s.dao.wallAll error(%v)", err)
|
||||
return
|
||||
}
|
||||
s.cache = res
|
||||
s.testCache = res
|
||||
log.Info("loadWallsCache success")
|
||||
}
|
||||
|
||||
// cacheproc load cache
|
||||
func (s *Service) loadproc() {
|
||||
for {
|
||||
time.Sleep(s.tick)
|
||||
s.load()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user