saasbook

action_caching.rb

Jul 11th, 2012
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.15 KB | None | 0 0
  1. class MoviesController < ApplicationController
  2.   caches_page :show
  3.   cache_sweeper :movie_sweeper
  4.   def show
  5.     @movie = Movie.find(params[:id])
  6.   end
  7. end
Advertisement
Add Comment
Please, Sign In to add comment