Redis Zrangebylex 命令
Redis 教程
· 2019-03-07 21:44:50
Redis Zrangebylex 通过字典区间返回有序集合的成员。
语法
redis Zrange 命令基本语法如下:
redis 127.0.0.1:6379> ZRANGEBYLEX key min max [LIMIT offset count]
可用版本
>= 2.8.9
返回值
指定区间内的元素列表。
实例
redis 127.0.0.1:6379> ZADD myzset 0 a 0 b 0 c 0 d 0 e 0 f 0 g (integer) 7 redis 127.0.0.1:6379> ZRANGEBYLEX myzset - [c 1) "a" 2) "b" 3) "c" redis 127.0.0.1:6379> ZRANGEBYLEX myzset - (c 1) "a" 2) "b" redis 127.0.0.1:6379> ZRANGEBYLEX myzset [aaa (g 1) "b" 2) "c" 3) "d" 4) "e" 5) "f" redis>
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Data Mining
Jiawei Han、Micheline Kamber、Jian Pei / Morgan Kaufmann / 2011-7-6 / USD 74.95
The increasing volume of data in modern business and science calls for more complex and sophisticated tools. Although advances in data mining technology have made extensive data collection much easier......一起来看看 《Data Mining》 这本书的介绍吧!