• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






会飞の鱼

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

随笔分类 -  Redis

Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。
 
centos7 安装redis
摘要:第一步:下载redis安装包 wget http://download.redis.io/releases/redis-4.0.6.tar.gz 第二步:解压压缩包 tar -zxvf redis-4.0.6.tar.gz 第三步:yum安装gcc依赖 yum install gcc -y 第四步: 阅读全文
posted @ 2018-12-03 12:16 会飞の鱼 阅读(117) 评论(0) 推荐(0)
redis cluster test
摘要:cp /test/tests/redis.conf /etc redis-server /etc/redis.conf redis-trib.rb create --replicas 1 172.17.0.6:6379 172.17.0.7:6379 172.17.0.8:6379 172.17.0 阅读全文
posted @ 2017-10-25 21:41 会飞の鱼 阅读(367) 评论(0) 推荐(0)
Redis cli 操作
摘要:备份 root@575e8088b5fb:/data# redis-cli LASTSAVE(integer) 1500273743root@575e8088b5fb:/data# redis-cli BGSAVE Background saving startedroot@575e8088b5fb 阅读全文
posted @ 2017-07-19 08:54 会飞の鱼 阅读(138) 评论(0) 推荐(0)
Autopilot Pattern Redis
摘要:https://github.com/autopilotpattern/redis Architecture 正在运行的群集包括以下组件: Redis :我们使用的是Redis 3.2。 Redis Sentinel :管理故障转移。 ContainerPilot :包含在我们的Redis容器中,以 阅读全文
posted @ 2017-07-18 10:31 会飞の鱼 阅读(283) 评论(0) 推荐(0)
Redis 入门
摘要:1.redis是什么2.redis的作者何许人也3.谁在使用redis4.学会安装redis5.学会启动redis6.使用redis客户端7.redis数据结构 – 简介8.redis数据结构 – strings9.redis数据结构 – lists10.redis数据结构 – 集合11.redis 阅读全文
posted @ 2017-07-17 15:09 会飞の鱼 阅读(172) 评论(0) 推荐(0)