Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Created January 27, 2013 21:40
Show Gist options
  • Save mb-dev/4650744 to your computer and use it in GitHub Desktop.
Save mb-dev/4650744 to your computer and use it in GitHub Desktop.
Russian Doll Caching - Post Presenter
class PostPresenter
def initialize(post)
@post = post
end
def comments
Comment.includes(:user).where(post_id: @post.id)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment