Class: ActiveCache::Store::AbstractStore

Inherits:
Object
  • Object
show all
Defined in:
lib/active_cache/active_cache_store.rb

Direct Known Subclasses

DalliStore

Class Method Summary collapse

Class Method Details

.expire(key) ⇒ Object



15
16
17
# File 'lib/active_cache/active_cache_store.rb', line 15

def self.expire(key)
  raise "Not Implemented"
end

.read(key) ⇒ Object



7
8
9
# File 'lib/active_cache/active_cache_store.rb', line 7

def self.read(key)
  raise "Not Implemented"
end

.write(key, value, expire = nil) ⇒ Object



11
12
13
# File 'lib/active_cache/active_cache_store.rb', line 11

def self.write(key, value, expire = nil)
  raise "Not Implemented"
end