“Redis运维”的版本间的差异
跳到导航
跳到搜索
docker>Evan |
() |
||
(未显示同一用户的12个中间版本) | |||
第1行: | 第1行: | ||
+ | == Redis面试题== | ||
+ | [https://blog.csdn.net/HO1_K/article/details/136394137 30+Redis面试题整理(2024)附答案] | ||
+ | |||
+ | https://blog.csdn.net/LinkSLA/article/details/130258397 | ||
+ | |||
+ | https://www.cnblogs.com/hahaha111122222/p/17329230.html | ||
+ | |||
==特征== | ==特征== | ||
速度快 10万/秒 读写 当然是硬件OK | 速度快 10万/秒 读写 当然是硬件OK | ||
+ | |||
+ | =version说明= | ||
+ | 版本号第二位如果是奇数,则为非稳定版本(例如2.7、2.9、3.1),如果是偶数,则为稳定版本(例如2.6、2.8、3.0、3.2), | ||
==[[Redis常用操作]]== | ==[[Redis常用操作]]== | ||
第11行: | 第21行: | ||
==install and configure== | ==install and configure== | ||
+ | [[Redis5 cluster]] | ||
+ | |||
[[How To Install and Use Redis]] | [[How To Install and Use Redis]] | ||
[[Redis常用操作]] | [[Redis常用操作]] | ||
+ | |||
+ | https://redis.io/topics/config | ||
<pre> | <pre> | ||
第37行: | 第51行: | ||
</pre> | </pre> | ||
+ | ===查看redis的配置文件位置 === | ||
+ | systemctl status redis | ||
+ | cat /usr/lib/systemd/system/redis.service # 就可看配置了 线上为 /etc/redis/redis.conf ,/etc/redis.conf 是ln | ||
==win == | ==win == | ||
第46行: | 第63行: | ||
=see also= | =see also= | ||
+ | [https://my.oschina.net/vivotech/blog/4669473 Redis 缓存性能实践及总结] | ||
+ | |||
[https://my.oschina.net/editorial-story/blog/3072792 缓存有那么多种,分别是干什么的] | [https://my.oschina.net/editorial-story/blog/3072792 缓存有那么多种,分别是干什么的] | ||
+ | |||
+ | |||
+ | [https://blog.csdn.net/qq_34368762/article/details/80828409 Redis集群中的节点如何保证数据一致] | ||
+ | |||
+ | [https://github.com/evan886/JavaFamily 【互联网一线大厂面试+学习指南】进阶知识完全扫盲] | ||
+ | |||
+ | |||
+ | [https://juejin.im/post/5dc850b4e51d452c2308ee27 《我们一起进大厂》系列-Redis双写一致性、并发竞争、线程模型] | ||
+ | |||
+ | |||
+ | |||
[[category:redis]] [[category:ops]] | [[category:redis]] [[category:ops]] |
2024年8月26日 (一) 03:08的最新版本
目录
Redis面试题
https://blog.csdn.net/LinkSLA/article/details/130258397
https://www.cnblogs.com/hahaha111122222/p/17329230.html
特征
速度快 10万/秒 读写 当然是硬件OK
version说明
版本号第二位如果是奇数,则为非稳定版本(例如2.7、2.9、3.1),如果是偶数,则为稳定版本(例如2.6、2.8、3.0、3.2),
Redis常用操作
使用场景
缓存
消息队列
install and configure
https://redis.io/topics/config
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
查看redis的配置文件位置
systemctl status redis cat /usr/lib/systemd/system/redis.service # 就可看配置了 线上为 /etc/redis/redis.conf ,/etc/redis.conf 是ln
win
https://github.com/ServiceStack/redis-windows/tree/master/downloads 下载安装