使用Memcached进行片段缓存

Cod*_*eef 4 ruby memcached caching ruby-on-rails fragment-caching

有没有办法在Rails中使用Memcached进行片段缓存?

Bri*_*ong 7

您可以将它添加到您的development.rb中,它应该执行片段缓存以及其他缓存

config.action_controller.perform_caching = true
config.cache_classes = true
config.cache_store = :mem_cache_store
Run Code Online (Sandbox Code Playgroud)