Parent

Included Modules

Innate::Cache::Memory

Memory cache is simply a Hash with the Cache::API, it’s the reference implementation for every other cache and the default cache.

Public Instance Methods

cache_delete(*args) click to toggle source
    # File lib/innate/cache/memory.rb, line 16
16:       def cache_delete(*args)
17:         super{|key| delete(key) }
18:       end
cache_fetch(*args) click to toggle source
    # File lib/innate/cache/memory.rb, line 12
12:       def cache_fetch(*args)
13:         super{|key| self[key] }
14:       end
cache_store(*args) click to toggle source
    # File lib/innate/cache/memory.rb, line 8
 8:       def cache_store(*args)
 9:         super{|key, value| self[key] = value }
10:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.