Class: APICache::NullStore

Inherits:
AbstractStore show all
Defined in:
lib/api_cache/null_store.rb

Overview

A null store for environments where caching may be undesirable, such as testing.

Instance Method Summary collapse

Methods inherited from AbstractStore

#get

Constructor Details

#initializeNullStore

Returns a new instance of NullStore.



5
6
# File 'lib/api_cache/null_store.rb', line 5

def initialize
end

Instance Method Details

#exists?(key) ⇒ Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/api_cache/null_store.rb', line 8

def exists?(key)
  false
end

#expired?(key, timeout) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/api_cache/null_store.rb', line 16

def expired?(key, timeout)
  true
end

#set(key, value) ⇒ Object



12
13
14
# File 'lib/api_cache/null_store.rb', line 12

def set(key, value)
  true
end