redisZRangeByScore(rredis)
redisZRangeByScore()所属R语言包:rredis
redisZRangeByScore
redisZRangeByScore
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return the all the elements in the sorted set at key with a score between min and max (including elements with score equal to min or max).
返回排序的集合中的所有元素在关键的得分min和max(包括元素,得分等于min或max之间)。
用法----------Usage----------
redisZRangeByScore(key, min, max, offset = NULL, count = NULL, withscores = FALSE)
参数----------Arguments----------
参数:key
The set name.
集的名称。
参数:min
Minimum score.
最低得分。
参数:max
Maximum score.
最高得分。
参数:offset
Limit the results by excluding the first offset items. Requires also the use of count.
第一offset项目除外,限制的结果。也需要使用count。
参数:count
Limit the results to the first count items. Requires also the use of offset.
将结果限制为第一count项目。也需要使用offset。
参数:withscores
Also return the scores.
同时传回的分数。
Details
详细信息----------Details----------
The offset and count arguments must both be specified if used.
offset和count参数都必须被指定使用。
值----------Value----------
See the Redis documentation for more information.
Redis的文档了解更多信息。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|