Class: Resterl::Caches::CacheInterface
- Inherits:
-
Object
- Object
- Resterl::Caches::CacheInterface
show all
- Defined in:
- lib/resterl/caches/cache_interface.rb
Instance Method Summary
collapse
Instance Method Details
#delete(key) ⇒ Object
12
13
14
|
# File 'lib/resterl/caches/cache_interface.rb', line 12
def delete key
raise 'Not yet implemented!'
end
|
#read(key) ⇒ Object
4
5
6
|
# File 'lib/resterl/caches/cache_interface.rb', line 4
def read key
raise 'Not yet implemented!'
end
|
#write(key, value, expires_in) ⇒ Object
8
9
10
|
# File 'lib/resterl/caches/cache_interface.rb', line 8
def write key, value, expires_in
raise 'Not yet implemented!'
end
|