protected Method

Actions.expire_action(options = {})

There's no documentation for this item.

Source Code

# File action_controller/caching/actions.rb, line 62
def expire_action(options = {})
  return unless cache_configured?

  if options[:action].is_a?(Array)
    options[:action].dup.each do |action|
      expire_fragment(ActionCachePath.path_for(self, options.merge({ :action => action })))
    end
  else
    expire_fragment(ActionCachePath.path_for(self, options))
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.