码迷,mamicode.com
首页 > 其他好文 > 详细

redis 分页

时间:2019-01-23 23:24:54      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:分页   col   push   int   strong   span   push a   bsp   color   

redis 分页

127.0.0.1:6379> lpush a 1
(integer) 1
127.0.0.1:6379> lpush a 2
(integer) 2
127.0.0.1:6379> lpush a 3
(integer) 3
127.0.0.1:6379> lpush a 4
(integer) 4
127.0.0.1:6379> lpush a 5
(integer) 5
127.0.0.1:6379> lpush a 6
(integer) 6
127.0.0.1:6379> lpush a 7
(integer) 7
127.0.0.1:6379> lpush a 8
(integer) 8
127.0.0.1:6379> lpush a 9
(integer) 9
127.0.0.1:6379> lpush a 10
(integer) 10
127.0.0.1:6379> lrange a 0 4
1) "10"
2) "9"
3) "8"
4) "7"
5) "6"

127.0.0.1:6379> set 1 a1
OK
127.0.0.1:6379> set 2 b2
OK
127.0.0.1:6379> set 2 c3
OK
127.0.0.1:6379> set 2 b2
OK
127.0.0.1:6379> set 3 c3
OK
127.0.0.1:6379> set 4 d4
OK
127.0.0.1:6379> set 5 e5
OK
127.0.0.1:6379> set 6 f6
OK
127.0.0.1:6379> set 7 g7
OK
127.0.0.1:6379> set 8 h8
OK
127.0.0.1:6379> set 9 i9
OK
127.0.0.1:6379> set 10 l10
OK

127.0.0.1:6379> lrange a 0 4
1) "10"
2) "9"
3) "8"
4) "7"
5) "6"

127.0.0.1:6379> mget 10 9 8 7 6 
1) "l10"
2) "i9"
3) "h8"
4) "g7"
5) "f6"

 

redis 分页

标签:分页   col   push   int   strong   span   push a   bsp   color   

原文地址:https://www.cnblogs.com/xiluhua/p/10311811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!