redisHDel: Delete a hash value.

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

View source: R/hashCMD.R

Description

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

Usage

1
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.

Author(s)

B. W. Lewis

References

http://redis.io/commands

See Also

redisHSet

Examples

1
2
3
4
5
## Not run: 
redisHMSet('A',list(x=1,y=2,z=3))
redisHDel('A','x')

## End(Not run)

bwlewis/rredis documentation built on Jan. 3, 2022, 4:53 p.m.