Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CacheDB *redis.Client
Functions ¶
func GetRedisClientPool ¶
Types ¶
type Repo ¶
type Repo interface { Set(key, value string, ttl time.Duration, options ...Option) error Get(key string, options ...Option) (string, error) TTL(key string) (time.Duration, error) Expire(key string, ttl time.Duration) bool ExpireAt(key string, ttl time.Time) bool Del(key string, options ...Option) bool Exists(keys ...string) bool Incr(key string, options ...Option) int64 Close() error // contains filtered or unexported methods }
Click to show internal directories.
Click to hide internal directories.