Sha256: 1133e8e511b3f216cb0b8a0788b385497dec5534c09c480a32304dfbe5bbcc72

Contents?: true

Size: 1.33 KB

Versions: 74

Compression:

Stored size: 1.33 KB

Contents

module ActionView
  module Helpers
    # This helper to exposes a method for caching of view fragments.
    # See ActionController::Caching::Fragments for usage instructions.
    module CacheHelper
      # A method for caching fragments of a view rather than an entire
      # action or page.  This technique is useful caching pieces like
      # menus, lists of news topics, static HTML fragments, and so on.
      # This method takes a block that contains the content you wish
      # to cache.  See ActionController::Caching::Fragments for more
      # information.
      #
      # ==== Examples
      # If you wanted to cache a navigation menu, you could do the
      # following.
      #
      #   <% cache do %>
      #     <%= render :partial => "menu" %>
      #   <% end %>
      #
      # You can also cache static content...
      #
      #   <% cache do %>
      #      <p>Hello users!  Welcome to our website!</p>
      #   <% end %>
      #
      # ...and static content mixed with RHTML content.
      #
      #    <% cache do %>
      #      Topics:
      #      <%= render :partial => "topics", :collection => @topic_list %>
      #      <i>Topics listed alphabetically</i>
      #    <% end %>
      def cache(name = {}, options = nil, &block)
        @controller.fragment_for(output_buffer, name, options, &block)
      end
    end
  end
end

Version data entries

74 entries across 71 versions & 15 rubygems

Version Path
actionpack-2.3.18 lib/action_view/helpers/cache_helper.rb
actionpack_csi-2.3.5.p8 lib/action_view/helpers/cache_helper.rb
actionpack-2.3.17-rack-upgrade-2.3.17 lib/action_view/helpers/cache_helper.rb
actionpack-2.3.17 lib/action_view/helpers/cache_helper.rb
actionpack_csi-2.3.5.p7 lib/action_view/helpers/cache_helper.rb
actionpack_csi-2.3.5.p6 lib/action_view/helpers/cache_helper.rb
actionpack-2.3.16 lib/action_view/helpers/cache_helper.rb
actionpack-rack-upgrade-2-2.3.16 lib/action_view/helpers/cache_helper.rb
actionpack-rack-upgrade-2-2.3.15 lib/action_view/helpers/cache_helper.rb
actionpack-2.3.15 lib/action_view/helpers/cache_helper.rb
actionpack-rack-upgrade-2.3.16 lib/action_view/helpers/cache_helper.rb
actionpack-rack-upgrade-2.3.15 lib/action_view/helpers/cache_helper.rb
actionpack-rack-upgrade-2.3.14 lib/action_view/helpers/cache_helper.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/actionpack-2.3.14/lib/action_view/helpers/cache_helper.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/actionpack-2.3.12/lib/action_view/helpers/cache_helper.rb
actionpack-2.3.14 lib/action_view/helpers/cache_helper.rb
kajam-1.0.3.rc2 vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb
actionpack-2.3.12 lib/action_view/helpers/cache_helper.rb
radiant-1.0.0.rc2 vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb
radiant-1.0.0.rc1 vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb