GITLAB

Hermes / api-game

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • api-game_qianyi
  • service-common
  • svredis
  • interface.go
  • ef401a03   feat✨:房间排行活动基本框架 Browse Code »
    王家文
    2024-04-17 17:56:19 +0800  
interface.go 239 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package svredis

// RedisInfo redis存储信息
type RedisInfo struct {
	CacheKey  string
	CacheTime int
}

// IRedisData redis存储对象
type IRedisData interface {
	// RedisInfo redis存储信息
	RedisInfo(suffix string) *RedisInfo
}