File tree Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Original file line number Diff line number Diff line change 1212## 前言
1313本项目使用 Redis 最新稳定版本 v5.0,不同操作系统的安装方式如下:
1414
15- - Windows:访问 https://www.memurai.com/get-memurai 下载后启动程序。
16- - Ubuntu:` apt-get install redis `
1715- Mac:` brew install redis `
18- - 其它:自行安装。
16+ - Ubuntu:` apt-get install redis `
17+ - Windows:访问 https://www.memurai.com/get-memurai 下载后安装程序。
18+ - 其它:请自行搜索安装方式,就不在此赘述了。
1919
2020安装后,执行 ` redis-cli ` 命令即可启动 Redis 客户端。
2121
@@ -26,3 +26,25 @@ C:\Users\user>redis-cli
2626 2) " story"
2727 3) " or-result"
2828```
29+
30+ ## Redis 数据结构与应用
31+ Redis 基础的数据结构有 5 种,分别是:
32+
33+ - string(字符串)
34+ - list(列表)
35+ - hash(哈希)
36+ - set(集合)
37+ - zset(有序集合)
38+
39+ 每一种数据结构都有它对应的实践场景,下面几个小节会就这几种数据结构展开讨论,也欢迎各位开发朋友来分享更多的应用案例。
40+
41+ ### 字符串
42+
43+ ### 列表
44+ - 如何利用 Redis List 实现异步消息队列?
45+
46+ ### 哈希
47+
48+ ### 集合
49+
50+ ### 有序集合
You can’t perform that action at this time.
0 commit comments