使用 Memcached 进行片段缓存

发布于 2024-07-08 19:09:13 字数 37 浏览 9 评论 0原文

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

Is there any way of using Memcached for fragment caching in Rails?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所谓喜欢 2024-07-15 19:09:13

你可以将其添加到你的development.rb中,它应该像其他的一样进行片段缓存

config.action_controller.perform_caching = true
config.cache_classes = true
config.cache_store = :mem_cache_store

you can add this to your development.rb and it should do fragment caching as well as the others

config.action_controller.perform_caching = true
config.cache_classes = true
config.cache_store = :mem_cache_store
耀眼的星火 2024-07-15 19:09:13

您可以在环境中设置fragment_cache_store。rb

  ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()

http://api.rubyonrails。 org/classes/ActionController/Caching.html#M000628

You can set the fragment_cache_store in your environment.rb

  ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()

http://api.rubyonrails.org/classes/ActionController/Caching.html#M000628

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文