|
9 | 9 | [](#how-to-join) |
10 | 10 | [](https://gitter.im/doocs) |
11 | 11 |
|
12 | | -## 前言 |
13 | | -本项目所有演示代码均基于 Redis 最新稳定版本 `v5.0.3`,不同操作系统下 Redis 的安装方式请自行搜索,就不在此赘述了。 |
| 12 | +本项目主要讲解 Redis 的底层原理以及在各种场景下的应用。所有演示代码均基于 Redis 最新稳定版本 `v5.0.3`,不同操作系统下 Redis 的安装方式请自行搜索,就不在此赘述了。 |
14 | 13 |
|
15 | 14 | 另,本项目针对不同编程语言,使用了其对应的 Redis 库,方便程序对 Redis 进行各项操作: |
16 | 15 |
|
17 | | -| lang | lib | version | usage | |
| 16 | +| # | 语言 | 库 | 版本 | 使用 | |
| 17 | +|---|---|---|---|---| |
| 18 | +| 1 | Python3 | [`redis`](https://pypi.org/project/redis/) | `v3.3.8` | `pip3 install redis `| |
| 19 | +| 2 | Java8 | [`jedis`](https://mvnrepository.com/artifact/redis.clients/jedis/3.1.0) | `v3.1.0` | `compile group: 'redis.clients', name: 'jedis', version: '3.1.0'` | |
| 20 | + |
| 21 | +欢迎各位开发朋友补充更多的实际应用场景,让项目内容更加完善。 |
| 22 | + |
| 23 | +书籍参考: |
| 24 | + |
| 25 | +| # | 书名 | 作者 | 推荐指数 | |
18 | 26 | |---|---|---|---| |
19 | | -| Python3 | [`redis`](https://pypi.org/project/redis/) | `v3.3.8` | `pip3 install redis `| |
20 | | -| Java8 | [`jedis`](https://mvnrepository.com/artifact/redis.clients/jedis/3.1.0) | `v3.1.0` | `compile group: 'redis.clients', name: 'jedis', version: '3.1.0'` | |
| 27 | +| 1 | Redis 深度历险:核心原理和应用实践[2018] | 钱文品 | ⭐⭐⭐⭐⭐ | |
| 28 | +| 2 | Redis 使用手册[2019] | 黄健宏 | ⭐⭐⭐⭐⭐ | |
21 | 29 |
|
22 | 30 | ## Redis 数据结构与应用 |
23 | 31 |
|
24 | | -### 1. [String 字符串](/docs/redis-string-introduction.md) |
| 32 | +### [String 字符串](/docs/redis-string-introduction.md) |
25 | 33 | - [说说如何基于 Redis 实现分布式锁?](/docs/redis-distributed-lock.md) |
26 | 34 |
|
27 | | -### 2. [List 列表](/docs/redis-list-introduction.md) |
| 35 | +### [List 列表](/docs/redis-list-introduction.md) |
28 | 36 | - 如何利用 Redis List 实现异步消息队列? |
29 | 37 |
|
30 | | -### 3. [Set 集合](/docs/redis-set-introduction.md) |
| 38 | +### [Set 集合](/docs/redis-set-introduction.md) |
31 | 39 |
|
32 | | -### 4. [Sorted Sets 有序集合](/docs/redis-sorted-set-introduction.md) |
| 40 | +### [Sorted Sets 有序集合](/docs/redis-sorted-set-introduction.md) |
33 | 41 | - [社交网站通常会有粉丝关注的功能,用 Redis 怎么实现?](/docs/redis-sorted-set-sns-follow.md) |
34 | 42 |
|
35 | | -### 5. [Hash 哈希](/docs/redis-hash-introduction.md) |
| 43 | +### [Hash 哈希](/docs/redis-hash-introduction.md) |
36 | 44 | - [登录会话,用 Redis 该怎么做?](/docs/redis-hash-session-token.md) |
37 | 45 | - [如何使用 Redis 实现短网址服务?](/docs/redis-hash-shorten-url.md) |
38 | 46 |
|
39 | | -### 6. [HyperLogLog](/docs/redis-hyperLogLog-introduction.md) |
| 47 | +### [HyperLogLog](/docs/redis-hyperLogLog-introduction.md) |
40 | 48 |
|
41 | | -### 7. [Bitmap 位图](/docs/redis-bitmap-introduction.md) |
| 49 | +### [Bitmap 位图](/docs/redis-bitmap-introduction.md) |
0 commit comments