随笔分类 - Redis
摘要:转载自:https://www.oiox.cn/index.php/archives/408/ Redis单实例安装 Redis(Remote Dictionary Server)是一个开源的内存数据库,遵守 BSD 协议,它提供了一个高性能的键值(key-value)存储系统,常用于缓存、消息队列
阅读全文
摘要:转载自:https://www.oiox.cn/index.php/archives/411/ Redis Sentinel哨兵模式部署 主从模式的弊端就是不具备高可用性,当master挂掉以后,Redis将不能再对外提供写入操作,因此sentinel模式应运而生。sentinel中文含义为哨兵,顾
阅读全文
摘要:转载自:https://www.oiox.cn/index.php/archives/409/ Redis主从模式部署 主从模式是Redis三种集群模式中最简单的,主数据库(master)和从数据库(slave)。其中,主从复制有如下特点: 主数据库可以进行读写操作,当读写操作导致数据变化时会自动将
阅读全文
摘要:转载自:https://www.oiox.cn/index.php/archives/414/ Redis Cluster模式部署 Redis的哨兵模式基本已经可以实现高可用,读写分离 ,但是在这种模式下每台 Redis 服务器都存储相同的数据,很浪费内存,所以在 redis3.0上加入了Clust
阅读全文
摘要:参考地址:https://www.cnblogs.com/pythonlx/p/17766242.html NFS服务器IP地址为192.168.1.230,共享目录为/data/nfs 1.在master主机上安装nfs服务 # yum install -y nfs-utils nfs-serve
阅读全文
摘要:转载自:https://mp.weixin.qq.com/s/hya20RvLgxvMUKURogYy7g 原文链接:https://blog.csdn.net/Design407/article/details/103242874 1、什么是 Redis? Redis 是完全开源免费的,遵守 BS
阅读全文
摘要:1.查看redis集群信息 [root@database01 ~]# redis-cli -c -h 192.168.0.164 -p 6379 192.168.0.164:6379> auth c2b9d063b86153fd9436fb07d8b3801d9ea40629964c422a22aa
阅读全文
摘要:文章转载自:https://mp.weixin.qq.com/s/SwE8Ge8G9zKVPwO_Dapn2w
阅读全文
摘要:前提条件 redis集群:已搭建三主三从(三台主机) prometheus、grafana已安装 三台主机ip: 192.168.0.39,192.168.0.164,192.168.0.68 第一种方法和第二种方法 第一种方法需要再安装 redis_exporter和prometheus,过程较麻
阅读全文
摘要:监控指标 性能指标:Performance 内存指标: Memory 基本活动指标:Basic activity 持久性指标: Persistence 错误指标:Error 性能指标:Performance Name Description latency Redis响应一个请求的时间 instan
阅读全文
摘要:1、Redis Desktop Manager RedisDesktopManager,简称RDM,这是一款很出名的Redis可视化管理工具,支持Windows,Mac,Ipad,LInux 开源地址:https://github.com/uglide/RedisDesktopManager 官网的
阅读全文
摘要:- 安装 redis 6版本的 ``` # yum -y install epel-release # wget https://repo.ius.io/ius-release-el7.rpm # yum install ius-release-el7.rpm # yum install -y re
阅读全文
摘要:yum -y install epel-release wget make gcc-c++ cd /opt wget https://download.redis.io/releases/redis-6.2.3.tar.gz tar -xf redis-6.2.3.tar.gz cd redis-6
阅读全文
摘要:NoSQL数据库 DBEngines网站中会统计目前数据库在全世界的排名 1.1 什么是NoSQL 最常见的解释是"non-relational",很多人说它是"Not only SQL" NoSQL仅仅是一个概念,泛指非关系型数据库 区别于关系型数据库,他们不保证关系数据的ACID特性 1.2 N
阅读全文
摘要:官方文档地址:https://django-redis-chs.readthedocs.io/zh_CN/latest/ 1. 介绍 django-redis 基于 BSD 许可, 是一个使 Django 支持 Redis cache/session 后端的全功能组件. 1.1 为何要用 djang
阅读全文
摘要:要点步骤总结: # 这里演示使用同一台主机上 # 创建各节点存储路径 mkdir -p /opt/redis/{7000,7001,7002,7003,7004,7005} # 创建各节点配置文件 cat > /opt/redis/7000/redis.conf << EOF port 7000 c
阅读全文