user_base.go 832 B

1234567891011121314151617181920212223242526272829303132333435
  1. package cache
  2. import (
  3. "time"
  4. "github.com/patrickmn/go-cache"
  5. )
  6. // UserServiceInterface 用户业务接口
  7. type UserServiceInterface interface {
  8. // 用户聊天模式
  9. GetUserMode(userId string) string
  10. SetUserMode(userId, mode string)
  11. ClearUserMode(userId string)
  12. // 用户聊天上下文
  13. GetUserSessionContext(userId string) string
  14. SetUserSessionContext(userId, content string)
  15. ClearUserSessionContext(userId string)
  16. // 用户请求次数
  17. SetUseRequestCount(userId string, current int)
  18. GetUseRequestCount(uerId string) int
  19. }
  20. var _ UserServiceInterface = (*UserService)(nil)
  21. // UserService 用戶业务
  22. type UserService struct {
  23. // 缓存
  24. cache *cache.Cache
  25. }
  26. // NewUserService 创建新的业务层
  27. func NewUserService() UserServiceInterface {
  28. return &UserService{cache: cache.New(time.Hour*2, time.Hour*5)}
  29. }