“Redis运维”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(导入1个版本)
第47行: 第47行:
 
=see also=
 
=see also=
 
[https://my.oschina.net/editorial-story/blog/3072792 缓存有那么多种,分别是干什么的]
 
[https://my.oschina.net/editorial-story/blog/3072792 缓存有那么多种,分别是干什么的]
 +
 +
 +
[https://juejin.im/post/5dc850b4e51d452c2308ee27 《我们一起进大厂》系列-Redis双写一致性、并发竞争、线程模型]
 +
 
[[category:redis]] [[category:ops]]
 
[[category:redis]] [[category:ops]]

2020年3月9日 (一) 08:09的版本

特征

速度快 10万/秒 读写 当然是硬件OK

Redis常用操作

使用场景

缓存

消息队列


install and configure

How To Install and Use Redis


Redis常用操作

redis-server

redis-cli

#关闭
redis-cli -c -p 7000 -a 36 shutdown 

redis-benchmark

redis-check-aof

redis-cli -h {host} -p {port}


redis-cli -h {host} -p {port} {command}


redis-server -v

win

https://github.com/ServiceStack/redis-windows/tree/master/downloads 下载安装

windows下redis安装

see also

缓存有那么多种,分别是干什么的


《我们一起进大厂》系列-Redis双写一致性、并发竞争、线程模型