Class: ActionDispatch::RailsEntityStore
- Inherits:
-
Rack::Cache::EntityStore
- Object
- Rack::Cache::EntityStore
- ActionDispatch::RailsEntityStore
- Defined in:
- lib/action_dispatch/http/rack_cache.rb
Class Method Summary collapse
Instance Method Summary collapse
- #exist?(key) ⇒ Boolean
-
#initialize(store = Rails.cache) ⇒ RailsEntityStore
constructor
A new instance of RailsEntityStore.
- #open(key) ⇒ Object
- #read(key) ⇒ Object
- #write(body) ⇒ Object
Constructor Details
#initialize(store = Rails.cache) ⇒ RailsEntityStore
Returns a new instance of RailsEntityStore.
37 38 39 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 37 def initialize(store = Rails.cache) @store = store end |
Class Method Details
.resolve(uri) ⇒ Object
33 34 35 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 33 def self.resolve(uri) new end |
Instance Method Details
#exist?(key) ⇒ Boolean
41 42 43 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 41 def exist?(key) @store.exist?(key) end |
#open(key) ⇒ Object
45 46 47 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 45 def open(key) @store.read(key) end |
#read(key) ⇒ Object
49 50 51 52 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 49 def read(key) body = open(key) body.join if body end |
#write(body) ⇒ Object
54 55 56 57 58 59 |
# File 'lib/action_dispatch/http/rack_cache.rb', line 54 def write(body) buf = [] key, size = slurp(body) { |part| buf << part } @store.write(key, buf) [key, size] end |