class ConfigCat::ConfigCache

Public Instance Methods

get(key) click to toggle source

Config cache interface

# File lib/configcat/interfaces.rb, line 26
def get(key)
  #
  #     :returns the config json object from the cache
  #
end
set(key, value) click to toggle source
# File lib/configcat/interfaces.rb, line 32
def set(key, value)
  #
  #     Sets the config json cache.
  #
end