Created
March 2, 2012 04:56
-
-
Save jugyo/1955798 to your computer and use it in GitHub Desktop.
memoize with memcache store in Rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: | |
# | |
# module ApplicationHelper | |
# extend MemcacheMemoize | |
# | |
# def bar(count = 10) | |
# "BAR" * count | |
# end | |
# memcache_memoize :bar, :expires_in => 10 | |
# end | |
# | |
module MemcacheMemoize | |
def memcache_memoize(method, options) | |
define_method(:"#{method}_with_memcache_memoize") do |*args| | |
key = Digest::SHA1.hexdigest("#{self.class.name}##{method}(#{args.map(&:to_s).join(',')})") | |
Rails.cache.fetch(key, options) { __send__(:"#{method}_without_memcache_memoize", *args) } | |
end | |
alias_method_chain method, :memcache_memoize | |
end | |
end |
Question:
- Why the
hexdigest
? Is that more efficient?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've wanted to create this for some time. Glad you posted it and that I found it.