我有一个 Rails 4 应用程序。我必须以某种方式区分不同的缓存键,但不知道命名约定。
第一个例子:
我有一个带有index
,completed_tasks
和incoming_tasks
动作的任务模型。@tasks
由于分页,A 具有相同的实例名称 ( )。
目前缓存键的名称如下所示。我的问题: 1. 缓存键结构是否足够好?2. 我将键的各个部分放入数组中的顺序是否重要?例如[@tasks.map(&:id), @tasks.map(&:updated_at).max, 'completed-tasks']
比['completed-tasks', @tasks.map(&:id), @tasks.map(&:updated_at).max]
?
完成任务.html.erb
<% cache([@tasks.map(&:id), @tasks.map(&:updated_at).max, 'completed-tasks']) do %>
<%= render @tasks %>
<% end %>
任务.html.erb
<% cache([@tasks.map(&:id), @tasks.map(&:updated_at).max]) do %>
<%= render @tasks %>
<% end %>
incoming_tasks.html.erb
<% cache([@tasks.map(&:id), @tasks.map(&:updated_at).max, 'incoming-tasks']) do %>
<%= render @tasks %>
<% end %>
第二个例子:
我也对以下命名约定有疑问russian-doll-caching
:
products/index.html.erb
<% cache([@products.map(&:id), @products.map(&:updated_at).max]) do %>
<%= render @products %>
<% end %>
_product.html.erb
<% cache(product) do %>
<%= product.name %>
....
<% end %>
这个版本是否足够好,或者我总是应该在外部和内部缓存键数组中放置一些字符串,以避免其他页面上类似命名的缓存键出现问题。例如,我计划放置与我的示例中的内部缓存完全相同的页面<% cache(@product) do %>
。profile#show
如果键必须不同,那么rails约定将内部缓存键命名为外部缓存键是什么?