Skip to content

Instantly share code, notes, and snippets.

@rhnasc
Created January 27, 2017 07:19
Show Gist options
  • Save rhnasc/cc04a6baa8eb87ca201a5c817fa8f0f7 to your computer and use it in GitHub Desktop.
Save rhnasc/cc04a6baa8eb87ca201a5c817fa8f0f7 to your computer and use it in GitHub Desktop.
# very BAD
## deploy 1, by Mariah
Rails.cache.fetch ['entities', id, timestamp] do
SomeCustomDataStructure.new
end
## deploy 2, John just introduced a cache bug!
Rails.cache.fetch ['entities', id, timestamp] do
SomeCustomDataStructureOpsIChanged.new
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment