在每个用户的Rails中使用片段缓存

问题描述 投票:6回答:3

我有列出所有活动的页面。但是事件列表取决于用户是否是管理员。如果我在浏览模型对象的页面上使用片段缓存,它将缓存管理员的所有事件。

它可以从缓存服务到另一个非管理员用户吗?如果是,我如何为非管理员和管理员用户使用片段缓存。

ruby-on-rails caching ruby-on-rails-4 memcached
3个回答
4
投票

使用片段缓存键执行以下操作:

<% cache [current_user.role, :events] do %>
  <b>All the Events based on the Current User's Role</b>
  <%= render events %>
<% end %>

http://api.rubyonrails.org/classes/ActionView/Helpers/CacheHelper.html#method-i-cache

您可以在缓存方法的name参数中传递任意数量的项目,以满足您的环境缓存。


2
投票

你可能想做这样的事情:

<%= cache_unless admin?, project do %>
  <b>All the topics on this project</b>
  <%= render project.topics %>
<% end %>

从Rails docs中取消的例子:http://api.rubyonrails.org/classes/ActionView/Helpers/CacheHelper.html#method-i-cache_unless


1
投票

在你的控制器中:

class ApplicationController < ActionController::Base

    fragment_cache_key do
      current_user.role
    end

#...

这将由Rails的片段缓存使用,并在构造缓存键时添加到fragment_cache_keys列表中。因此,只要您使用任何Rails的片段缓存,您就可以自动为每个用户角色获取唯一的缓存键(或使用您喜欢的任何内容)。

© www.soinside.com 2019 - 2024. All rights reserved.