redisType(rredis)
redisType()所属R语言包:rredis
Query a Redis value type.
查询Redis的值类型。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return a description of the type of the value corresponding to the specified key.
返回至指定的键相对应的值的类型的描述。
用法----------Usage----------
redisType(key)
参数----------Arguments----------
参数:key
The key to look up.
关键看。
Details
详细信息----------Details----------
The Redis database differentiates three types of values. The value types determine how Redis operates on the key/value pairs, not what kind of data may be contained within. Each value type may store generic R objects, binary blobs, or character strings. The Redis value types are:
的Redis的数据库区分三种类型的值。值类型确定如何Redis的经营上的键/值对,不是什么样的数据可能包含在。每一个值类型可以存储一般的R对象,二进制blob,或字符串。 Redis的值类型是:
string: A single value is associated with the key
字符串:一个单一的值相关联的关键
list: A stack of values is associated with the key
列表:与该键相关联的值的堆栈
set: A set of values is associated with the key.
组:一组值相关联的关键。
Values of "list" and "set" types have available to them special stack and set operations, respectively.
“名单”和“set”类型的值有提供给他们特殊的堆叠,并设置操作。
值----------Value----------
A descriptive character string that may be one of "none", "string", "list", or "set". "none" is returned if the key does not exist.
一个描述性字符串,可能是一个“无”,“串”,“列表”,或“set”。 “无”,如果该键不存在,则返回。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisKeys
redisKeys
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisSet('x',5)
redisLPush('y',6)
redisType('x')
redisType('y')
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|