# File lib/action_controller/caching/pages.rb, line 65 def expire_page(path) return unless perform_caching benchmark "Expired page: #{page_cache_file(path)}" do File.delete(page_cache_path(path)) if File.exist?(page_cache_path(path)) end end