Sha256: 477b683b5398b58b1d47230c8d54a9afe7fad3811c6a1795ea01b882e88f0f05
Contents?: true
Size: 586 Bytes
Versions: 8
Compression:
Stored size: 586 Bytes
Contents
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'innate/cache' module Ramaze Cache = Innate::Cache class Cache autoload :LRU, 'ramaze/cache/lru' autoload :LocalMemCache, 'ramaze/cache/localmemcache' autoload :MemCache, 'ramaze/cache/memcache' autoload :Sequel, 'ramaze/cache/sequel' def self.clear_after_reload action.clear if respond_to?(:action) action_value.clear if respond_to?(:action_value) end end end
Version data entries
8 entries across 8 versions & 2 rubygems