Class: ConfigCat::InMemoryConfigCache

Inherits:
ConfigCache show all
Defined in:
lib/configcat/configcache.rb

Instance Method Summary collapse

Constructor Details

#initializeInMemoryConfigCache

Returns a new instance of InMemoryConfigCache.



5
6
7
# File 'lib/configcat/configcache.rb', line 5

def initialize()
  @_value = {}
end

Instance Method Details

#get(key) ⇒ Object



9
10
11
# File 'lib/configcat/configcache.rb', line 9

def get(key)
  return @_value.fetch(key, nil)
end

#set(key, value) ⇒ Object



13
14
15
# File 'lib/configcat/configcache.rb', line 13

def set(key, value)
  @_value[key] = value
end