Class: ConfigCat::ConfigCache

Inherits:
Object
  • Object
show all
Defined in:
lib/configcat/interfaces.rb

Overview

Config cache interface

Direct Known Subclasses

InMemoryConfigCache, NullConfigCache

Instance Method Summary collapse

Instance Method Details

#get(key) ⇒ Object

:returns the config json object from the cache



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

def get(key)
end

#set(key, value) ⇒ Object

Sets the config json cache.



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

def set(key, value)
end