Skip to content

Instantly share code, notes, and snippets.

@knzai
Created December 14, 2009 22:46
Show Gist options
  • Save knzai/256511 to your computer and use it in GitHub Desktop.
Save knzai/256511 to your computer and use it in GitHub Desktop.
#a variation of this:http://ozmm.org/posts/z_cache_bang.html
#def rankings
# @rankings ||= rankings!
#end
#def rankings!
# # compute expensive rankings
#end
def rankings
@rankings || rankings!
end
def rankings!
@rankings =
# compute expensive rankings
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment