Class: ActionController::Caching::Fragments::MemoryStore

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

Overview

:nodoc:

Direct Known Subclasses

DRbStore

Instance Method Summary collapse

Methods inherited from UnthreadedMemoryStore

#delete, #delete_matched, #read, #write

Constructor Details

#initializeMemoryStore

:nodoc:



477
478
479
480
481
482
483
# File 'lib/action_controller/caching.rb', line 477

def initialize #:nodoc:
  super
  if ActionController::Base.allow_concurrency
    @mutex = Mutex.new
    MemoryStore.module_eval { include ThreadSafety }
  end
end