Skip to content

Instantly share code, notes, and snippets.

@PericlesTheo
Last active June 22, 2018 10:44
Show Gist options
  • Save PericlesTheo/ee3259c9210cdce43e567b266a9a39f1 to your computer and use it in GitHub Desktop.
Save PericlesTheo/ee3259c9210cdce43e567b266a9a39f1 to your computer and use it in GitHub Desktop.
def show
@article = Article.find(params[:id])
if stale?(etag: @article, last_modified: @article.created_at)
@statistics = @article.really_expensive_call
render json: @article
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment