Skip to content

Instantly share code, notes, and snippets.

@lmars
Created April 17, 2013 10:34
Show Gist options
  • Save lmars/5403304 to your computer and use it in GitHub Desktop.
Save lmars/5403304 to your computer and use it in GitHub Desktop.
Memoize example
def foo(*args)
@memoized_foo ||= {}
@memoized_foo[args] ||= begin
some_expensive_method
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment