Skip to content

Instantly share code, notes, and snippets.

@rhnasc
Last active January 27, 2017 07:22
Show Gist options
  • Save rhnasc/7fc4e1c471cdfdfc08aec567b4f0f0fa to your computer and use it in GitHub Desktop.
Save rhnasc/7fc4e1c471cdfdfc08aec567b4f0f0fa to your computer and use it in GitHub Desktop.
# good
## deploy 1, by Mariah
Rails.cache.fetch ['v1', 'entities', id, timestamp] do
SomeCustomDataStructure.new
end
## deploy 2, John incremented the version :)
Rails.cache.fetch ['v2', '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