Redis五大数据类型-List
基本的数据类型,列表在Redis里面 可以把list 玩成 栈、队列、阻塞队列!47.107.74.202:9807> LPUSH list one # 创建一个列表 添加值 one (integer) 1 47.107.74.202:9807> LPUSH list two (integer) 2 47.107.74.202:9807> LPUSH list three (integer) 3 47.107.74.202:9807> keys * 1) "list" 47.107.74.202:9807> LRAN...
最近评论