Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Last active December 11, 2015 12:39
Show Gist options
  • Save mb-dev/4602524 to your computer and use it in GitHub Desktop.
Save mb-dev/4602524 to your computer and use it in GitHub Desktop.
Russian Doll Caching - Before - Controller
class PostsController < ApplicationController
def show
@post = Post.includes(comments: :user).find(params[:id])
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