Class: ActionController::Caching::Fragments::DRbStore
- Inherits:
-
MemoryStore
- Object
- MemoryStore
- ActionController::Caching::Fragments::DRbStore
- Defined in:
- lib/action_controller/caching.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(address = 'druby://localhost:9192') ⇒ DRbStore
constructor
A new instance of DRbStore.
Methods inherited from MemoryStore
#delete, #delete_matched, #read, #write
Constructor Details
#initialize(address = 'druby://localhost:9192') ⇒ DRbStore
Returns a new instance of DRbStore.
325 326 327 |
# File 'lib/action_controller/caching.rb', line 325 def initialize(address = 'druby://localhost:9192') @data, @mutex = DRbObject.new(nil, address), Mutex.new end |