Class: Resourceful::NullCacheManager
- Inherits:
-
AbstractCacheManager
- Object
- AbstractCacheManager
- Resourceful::NullCacheManager
- Defined in:
- lib/resourceful/cache_manager.rb
Overview
This is the default cache, and does not do any caching. All lookups result in nil, and all attempts to store a response are a no-op.
Instance Method Summary collapse
-
#initialize ⇒ NullCacheManager
constructor
A new instance of NullCacheManager.
- #lookup(request) ⇒ Object
- #store(request, response) ⇒ Object
Methods inherited from AbstractCacheManager
Constructor Details
#initialize ⇒ NullCacheManager
Returns a new instance of NullCacheManager.
54 |
# File 'lib/resourceful/cache_manager.rb', line 54 def initialize; end |