chan.go 678 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/reply/model/reply"
  5. "go-common/library/log"
  6. )
  7. const (
  8. _replyChanBuf = 10240
  9. _topRpChanBuf = 128
  10. )
  11. type replyChan struct {
  12. rps []*reply.Reply
  13. }
  14. type topRpChan struct {
  15. oid int64
  16. tp int8
  17. rp *reply.Reply
  18. }
  19. func (s *Service) cacheproc() {
  20. for {
  21. select {
  22. case msg := <-s.replyChan:
  23. if err := s.dao.Mc.AddReply(context.Background(), msg.rps...); err != nil {
  24. log.Error("s.mcache.AddReply error(%v)", err)
  25. }
  26. case msg := <-s.topRpChan:
  27. if err := s.dao.Mc.AddTop(context.Background(), msg.oid, msg.tp, msg.rp); err != nil {
  28. log.Error("s.mcache.AddTop error(%v)", err)
  29. }
  30. }
  31. }
  32. }