feat: cache driver 增加 null 枚举值, 代表禁用缓存

This commit is contained in:
2026-01-05 09:47:50 +08:00
parent c3b314cb72
commit cd7c5fc1f2

View File

@@ -11,4 +11,5 @@ const (
CacheDriverRedis = "redis" // redis缓存驱动
CacheDriverGocache = "gocache" // gocache缓存驱动
CacheDriverMemcached = "memcached" // memcache缓存驱动
CacherDriverNull = "null" // 禁用缓存
)