Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Created January 27, 2013 21:41
Show Gist options
  • Save mb-dev/4650751 to your computer and use it in GitHub Desktop.
Save mb-dev/4650751 to your computer and use it in GitHub Desktop.
Russian Doll Caching - Controller - After
class PostsController < ApplicationController
def show
@post = Post.find(params[:id])
@presenter = PostPresenter.new(@post)
respond_to do |format|
format.html # show.html.erb
format.json { render json: @post }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment