redisMove(rredis)
redisMove()所属R语言包:rredis
Move the specified key/value pair to another database.
将指定的键/值对到另一个数据库。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Move the specified key/value pair in the currently selected database to another database.
在指定的键/值对当前选定的数据库移动到另一个数据库。
用法----------Usage----------
redisMove(key, dbindex)
参数----------Arguments----------
参数:key
The key to move.
键移动。
参数:dbindex
The destination database index number.
目标数据库的索引号。
Details
详细信息----------Details----------
This command returns TRUE only if the key was successfully moved, and FALSE if the target key was already there or if the source key was not found at all. It is possible to use redisMove as a locking primitive.
只有在关键的成功移至此命令将返回TRUE,FALSE,如果目标的关键是已经存在或者如果没有被发现在所有的信号源键。这是可能的,使用redisMove作为锁定原语。
值----------Value----------
Returns TRUE if the key/value pair was moved, or FALSE otherwise.
的键/值对,则返回TRUE,如果被移动,否则返回FALSE。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSelect
redisSelect
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisSelect(1)
redisSet('x',5)
redisMove('x',2)
redisSelect(2)
redisGet('x')
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|