class SplitIoClient::Cache::Repository

def initialize(config)

def initialize(config)
  @config = config
end

def namespace_key(key = '')

def namespace_key(key = '')
  "#{@config.redis_namespace}#{key}"
end

def set_string(key, str)

def set_string(key, str)
  @adapter.set_string(namespace_key(key), str)
end

def string(key)

def string(key)
  @adapter.string(namespace_key(key))
end