Redis
文章平均质量分 74
小柴林
When you learn about a framework, it’s important to know not only what it does but what principles it follows.
展开
-
Redis Cluster集群搭建
Redis Cluster集群一、redis-cluster设计Redis集群搭建的方式有多种,例如使用zookeeper等,但从redis 3.0之后版本支持redis-cluster集群,Redis-Cluster采用无中心结构,每个节点保存数据和整个集群状态,每个节点都和其他所有 节点连接。其redis-cluster架构图如下:其结构特点: 1、所有的redis...转载 2020-04-15 10:43:14 · 517 阅读 · 0 评论 -
redis.conf中文详解
redis的redis.conf具体说明转载 2017-09-07 16:34:53 · 426 阅读 · 1 评论 -
redis误操作flushall或者flushdb
redis是基于内容的nosql,在平时使用中,如果不小心执行了FLUSHALL或者FLUSHDB,那么是否意味着会丢失所有数据?其实不一定,如果开启了appendonly数据备份,还是能够找回相关数据的。命令介绍:FLUSHALL [ASYNC]Available since 1.0.0.Delete all the keys of all the e原创 2017-09-07 16:49:15 · 3008 阅读 · 0 评论 -
redis安装
1、下载redis安装包并安装:https://redis.io/download2、问题解决:2.1)make testYou need tcl 8.5 or newer in order to run the Redis testmake: *** [test] Error 1wget http://downloads.sourceforge.net/t原创 2017-09-26 13:07:09 · 249 阅读 · 0 评论