Class: Moneta::Adapters::Null

Inherits:
Object
  • Object
show all
Includes:
Defaults
Defined in:
lib/moneta/adapters/null.rb

Overview

Null backend which doesn’t store anything

Instance Method Summary collapse

Methods included from Defaults

#[], #[]=, #close, #decrement, #fetch, #increment

Methods included from OptionSupport

#expires, #prefix, #raw, #with

Constructor Details

#initialize(options = {}) ⇒ Null

Returns a new instance of Null.



8
9
# File 'lib/moneta/adapters/null.rb', line 8

def initialize(options = {})
end

Instance Method Details

#clear(options = {}) ⇒ void

This method returns an undefined value.

Clear all keys in this store

Parameters:

  • options (Hash) (defaults to: {})


32
33
34
# File 'lib/moneta/adapters/null.rb', line 32

def clear(options = {})
  self
end

#delete(key, options = {}) ⇒ Object

Delete the key from the store and return the current value

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Object)

    current value



27
28
29
# File 'lib/moneta/adapters/null.rb', line 27

def delete(key, options = {})
  nil
end

#key?(key, options = {}) ⇒ Boolean

Exists the value with key

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Boolean)


12
13
14
# File 'lib/moneta/adapters/null.rb', line 12

def key?(key, options = {})
  false
end

#load(key, options = {}) ⇒ Object

Fetch value with key. Return nil if the key doesn’t exist

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Object)

    value



17
18
19
# File 'lib/moneta/adapters/null.rb', line 17

def load(key, options = {})
  nil
end

#store(key, value, options = {}) ⇒ Object

Store value with key

Parameters:

  • key (Object)
  • value (Object)
  • options (Hash) (defaults to: {})

Returns:

  • value



22
23
24
# File 'lib/moneta/adapters/null.rb', line 22

def store(key, value, options = {})
  value
end