mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11644fd0ce
Collections can take advantage of `multi_read` if they render one template and their partials begin with a cache call. The cache call must correspond to either what the collections elements are rendered as, or match the inferred name of the partial. So with a notifications/_notification.html.erb template like: ```ruby <% cache notification %> <%# ... %> <% end %> ``` A collection would be able to use `multi_read` if rendered like: ```ruby <%= render @notifications %> <%= render partial: 'notifications/notification', collection: @notifications, as: :notification %> ``` |
||
---|---|---|
.. | ||
actionpack | ||
comments | ||
custom_pattern | ||
customers | ||
db_definitions | ||
developers | ||
digestor | ||
fun | ||
games | ||
good_customers | ||
helpers | ||
helpers_missing | ||
layout_tests/alt | ||
layouts | ||
mascots | ||
multipart | ||
override/test | ||
override2/layouts/test | ||
projects | ||
public | ||
replies | ||
respond_to | ||
test | ||
topics | ||
translations/templates | ||
_top_level_partial.html.erb | ||
_top_level_partial_only.erb | ||
companies.yml | ||
company.rb | ||
developer.rb | ||
developers.yml | ||
developers_projects.yml | ||
mascot.rb | ||
mascots.yml | ||
plain_text.raw | ||
plain_text_with_characters.raw | ||
project.rb | ||
projects.yml | ||
replies.yml | ||
reply.rb | ||
ruby_template.ruby | ||
shared.html.erb | ||
topic.rb | ||
topics.yml | ||
with_format.json.erb |