consts/cache.go

15 lines
335 B
Go
Raw Normal View History

2024-06-21 14:51:39 +08:00
// Package consts ...
//
// Description : consts ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-06-21 14:49
package consts
const (
CacheDriverRedis = "redis" // redis缓存驱动
CacheDriverGocache = "gocache" // gocache缓存驱动
CacheDriverMemcached = "memcached" // memcache缓存驱动
)