Class: ActionController::Caching::Fragments::DRbStore

Inherits:
MemoryStore show all
Defined in:
lib/action_controller/caching.rb

Overview

:nodoc:

Instance Method Summary collapse

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