Skip to content

Instantly share code, notes, and snippets.

@vladshub
Last active November 23, 2015 08:10
Show Gist options
  • Select an option

  • Save vladshub/35ba611582807eca5946 to your computer and use it in GitHub Desktop.

Select an option

Save vladshub/35ba611582807eca5946 to your computer and use it in GitHub Desktop.
RailsIsrael - Presentation Snippets
<% @products.each do |product| %>
<% cache product do %>
<%= render product %>
<% end %>
<% end %>
Class ListController < ApplicationController
before_filter :authentication, except: :public
page_cache: :public
action_cache: :index, :show
end
redis = Redis.new(timeout: 0.1, reconnect_attempts: 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment