Module: ActionController::Caching::Fragments::ThreadSafety

Defined in:
lib/action_controller/caching.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#delete(name, options = nil) ⇒ Object

:nodoc:



426
427
428
# File 'lib/action_controller/caching.rb', line 426

def delete(name, options=nil) #:nodoc:
  @mutex.synchronize { super }
end

#delete_matched(matcher, options = nil) ⇒ Object

:nodoc:



430
431
432
# File 'lib/action_controller/caching.rb', line 430

def delete_matched(matcher, options=nil) #:nodoc:
  @mutex.synchronize { super }
end

#read(name, options = nil) ⇒ Object

:nodoc:



418
419
420
# File 'lib/action_controller/caching.rb', line 418

def read(name, options=nil) #:nodoc:
  @mutex.synchronize { super }
end

#write(name, value, options = nil) ⇒ Object

:nodoc:



422
423
424
# File 'lib/action_controller/caching.rb', line 422

def write(name, value, options=nil) #:nodoc:
  @mutex.synchronize { super }
end