Module: MasterView::MIO::CachingMIOFilter

Defined in:
lib/masterview/io.rb

Overview

todo

Instance Method Summary collapse

Instance Method Details

#read(options = {}) ⇒ Object



333
334
335
336
337
338
339
# File 'lib/masterview/io.rb', line 333

def read(options={})
  if options[:disable_cache]
    super
  else #caching on
    super #todo obtain from cache
  end
end