Class: ActionDispatch::RailsMetaStore
- Inherits:
-
Rack::Cache::MetaStore
- Object
- Rack::Cache::MetaStore
- ActionDispatch::RailsMetaStore
- Defined in:
- actionpack/lib/action_dispatch/http/rack_cache.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(store = Rails.cache) ⇒ RailsMetaStore
constructor
A new instance of RailsMetaStore.
- #read(key) ⇒ Object
- #write(key, value) ⇒ Object
Constructor Details
#initialize(store = Rails.cache) ⇒ RailsMetaStore
Returns a new instance of RailsMetaStore.
11 12 13 |
# File 'actionpack/lib/action_dispatch/http/rack_cache.rb', line 11 def initialize(store = Rails.cache) @store = store end |
Class Method Details
.resolve(uri) ⇒ Object
7 8 9 |
# File 'actionpack/lib/action_dispatch/http/rack_cache.rb', line 7 def self.resolve(uri) new end |