Delete a key and associated value from Redis.
从Redis的删除键和关联的值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Delete a key and associated value from Redis.
从Redis的删除键和关联的值。
用法----------Usage----------
redisDelete(key)
参数----------Arguments----------
参数:key
The (required) character identifier to be looked up.
(必需的)字符的标识符,抬起了头。
Details
详细信息----------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----------
参见----------See Also----------
redisSet
redisSet
实例----------Examples----------
## Not run: [#不运行:]
redisSet('x',runif(5))
redisDelete('x')