Is is possible to configure the rails fragment caching to be a file_store and have the Rails.cache object to store values using a memory store? Or are they both the same storage mechanism in the end?

有帮助吗?

解决方案

As far as I'm aware, without monkey patching things, they're going to have to share the same cache store.

I'd assume it's possible to monkey patch things to have it look for which store to use elsewhere, and then get the two working separately, but that sounds like a bit of a nightmare.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top