是的,RedisCacheStore 支持只读 endpoint。可以使用 readonly: true 选项创建只读实例。例如:
readonly: true
Rails.application.config.cache_store = :redis_cache_store, { url: "redis://localhost:6379/0", readonly: true }
这将确保 Rails 应用程序在 Redis 服务器上使用只读连接进行缓存操作。
上一篇:ActiveSupport TimeWithZone 如何保留值?
下一篇:ActiveSupport::Concern 应该被 included 或 extended