method

collection_by_cache_keys

collection_by_cache_keys()
private

No documentation available.

# File actionview/lib/action_view/renderer/partial_renderer/collection_caching.rb, line 28
      def collection_by_cache_keys
        @collection.each_with_object({}) do |item, hash|
          hash[expanded_cache_key(item)] = item
        end
      end