class SwiftClient::NullCache

Public Instance Methods

get(key) click to toggle source
# File lib/swift_client/null_cache.rb, line 3
def get(key)
  nil
end
set(key, value) click to toggle source
# File lib/swift_client/null_cache.rb, line 7
def set(key, value)
  true
end