Make collection rendering faster.

This commit is contained in:
José Valim 2010-10-07 16:25:13 +02:00
parent b2600bfc18
commit 8f9e9118e4
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ module AbstractController
if controller.respond_to?(:_helpers)
include controller._helpers
if controller.respond_to?(:_routes)
if controller.respond_to?(:_routes) && controller._routes
include controller._routes.url_helpers
include controller._routes.mounted_helpers
end

View File

@ -307,12 +307,12 @@ module ActionView
def collection_without_template
segments, locals, collection_data = [], @locals, @collection_data
index, template = -1, nil
index, template, cache = -1, nil, {}
keys = @locals.keys
@collection.each_with_index do |object, i|
path, *data = collection_data[i]
template = find_template(path, keys + data)
template = (cache[path] ||= find_template(path, keys + data))
locals[data[0]] = object
locals[data[1]] = (index += 1)
segments << template.render(@view, locals)