Class: Measured::Cache::Null

Inherits:
Object
  • Object
show all
Defined in:
lib/measured/cache/null.rb

Instance Method Summary collapse

Instance Method Details

#exist?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/measured/cache/null.rb', line 4

def exist?
  false
end

#readObject



8
9
10
# File 'lib/measured/cache/null.rb', line 8

def read
  nil
end

#write(table) ⇒ Object



12
13
14
# File 'lib/measured/cache/null.rb', line 12

def write(table)
  nil
end