redisDelete: Delete a key and associated value from Redis.

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/allValCMD.R

Description

Delete a key and associated value from Redis.

Usage

1

Arguments

key

The (required) character identifier to be looked up.

Details

The key must not contain spaces or newline characters (otherwise an error will be thrown).

Value

Nothing is returned if the key/value pair is successfully deleted. A warning is thrown if the they key could not be found.

Author(s)

B. W. Lewis

References

http://redis.io/commands

See Also

redisSet

Examples

1
2
3
4
5
## Not run: 
redisSet('x',runif(5))
redisDelete('x')

## End(Not run)

rredis documentation built on May 2, 2019, 2:02 p.m.