Method: CloudConfig::Cache::Redis#delete

Defined in:
lib/cloud-config/cache/redis.rb

#delete(key) ⇒ Object

Delete the key from the cache

Parameters:

  • key (String, Symbol)

    Key to delete



59
60
61
# File 'lib/cloud-config/cache/redis.rb', line 59

def delete(key)
  client.del(key)
end