Module Ramaze::Helper::Cache::SingletonMethods
In: lib/ramaze/helper/cache.rb

Methods

Public Instance methods

This method allows you to cache whole actions.

@example Basic usage

  class Foo < Ramaze::Controller
    helper :cache
    cache_action :method => :bar

    def bar
      rand
    end
  end

[Validate]