Learn R Programming

rredis (version 1.7.0)

redisHDel: Delete a hash value.

Description

Delete the value associated with the given key/field combination.

Usage

redisHDel(key, field)

Arguments

key
A key name.
field
A field name.

Value

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

References

http://redis.io/commands

See Also

redisHSet

Examples

Run this code
## Not run: 
# redisHMSet('A',list(x=1,y=2,z=3))
# redisHDel('A','x')
# ## End(Not run)

Run the code above in your browser using DataLab