Hash
Memory cache is simply a Hash with the Cache::API, it's the reference implementation for every other cache and the default cache.
# File lib/innate/cache/memory.rb, line 16 def cache_delete(*args) super{|key| delete(key) } end
# File lib/innate/cache/memory.rb, line 12 def cache_fetch(*args) super{|key| self[key] } end
# File lib/innate/cache/memory.rb, line 8 def cache_store(*args) super{|key, value| self[key] = value } end
[Validate]
Generated with the Darkfish Rdoc Generator 2.