Guest User

Untitled

a guest
May 24th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ### Partial (DOESN'T WORK)
  2. <% Rails.cache.fetch("test") do %>
  3. This is a test
  4. <% end %>
  5.  
  6. ### Partial (DOES WORK)
  7. <% out = Rails.cache.fetch("test") do %>
  8. This is a test
  9. <% end %>
  10. <%= out %>
Add Comment
Please, Sign In to add comment