Description Usage Arguments Details Value Author(s) References See Also Examples
Delete a key and associated value from Redis.
1 | redisDelete(key)
|
key |
The (required) character identifier to be looked up. |
The key must not contain spaces or newline characters (otherwise an error will be thrown).
Nothing is returned if the key/value pair is successfully deleted. A warning is thrown if the they key could not be found.
B. W. Lewis
http://redis.io/commands
1 2 3 4 5 | ## Not run:
redisSet('x',runif(5))
redisDelete('x')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.