
Redis
BenZheng2121
Hello world!
展开
-
My Redis notes(3)--The Redis cluster on single CentOS
在前一篇的notes中,笔者已经记录了一些关于Redis的基本操作,但这是远远不够的(官方手册:https://redis.io/commands).我们不仅需要会Redis的数据结构,还应该懂得如何利用Redis的集群特性来搭建存储网络结构.今天我们来尝试搭建在CentOS的Redis单机集群存储网络. 进入正题. 1.The data presistence of Redis 在进入...原创 2018-04-15 19:15:31 · 212 阅读 · 0 评论 -
My Redis notes(1)--Installing the Redis on Linux
今天笔者带大家进行redis的安装和配置,这里就会用到笔者之前安装VirtualBox和CentOS的经历. 链接:Linux Series Notes(1)– Installing CentOS7 and configurating something essential of its 开撸! 1.Installing the Redis 1.1 installing the G...原创 2018-04-10 18:52:35 · 249 阅读 · 0 评论 -
My Redis notes(2)--the data structures of Redis
这篇note笔者来记录下关于Redis的5种数据结构. 1.the first type of data structure – String 在Redis中String这种数据结构是最重要也是最基础的,接下来的另外四种结构更多的是一种容器结构,它们主要也是对应于(String : String)这种(key : value)格式, 所有我们在String这个结构中最要掌握的就是(key ...原创 2018-04-11 22:18:29 · 254 阅读 · 0 评论