Skip to content

Commit 5abddd3

Browse files
committed
docs: update redis structure
更新 Redis 数据结构文档描述及导航
1 parent b55061e commit 5abddd3

7 files changed

+17
-16
lines changed

README.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,24 @@
1616

1717
| lang | lib | version | usage |
1818
|---|---|---|---|
19-
| Python3 | [`redis`](https://pypi.org/project/redis/) | `v3.2.1` | `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'` |
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'` |
2121

2222
## Redis 数据结构与应用
23-
Redis 基础的数据结构有 5 种,分别是:
2423

25-
- string(字符串)
26-
- list(列表)
27-
- hash(哈希)
28-
- set(集合)
29-
- zset(有序集合)
30-
31-
每一种数据结构都有它对应的实践场景,下面几个小节会就这几种数据结构展开讨论,也欢迎各位开发朋友来分享更多的应用案例。
32-
33-
### 字符串
24+
### 1. [String 字符串](/docs/redis-string-introduction.md)
3425
- [说说分布式锁的实现方式?](/docs/redis-distributed-lock.md)
3526

36-
### 列表
27+
### 2. [List 列表](/docs/redis-list-introduction.md)
3728
- 如何利用 Redis List 实现异步消息队列?
3829

39-
### 哈希
30+
### 3. [Set 集合](/docs/redis-set-introduction.md)
31+
32+
### 4. [Sorted Sets 有序集合](/docs/redis-sorted-set-introduction.md)
33+
34+
### 5. [Hash 哈希](/docs/redis-hash-introduction.md)
4035
- [登录会话,用 Redis 该怎么做?](/docs/redis-hash-session-token.md)
4136

42-
### 集合
37+
### 6. [HyperLogLog](/docs/redis-hyperLogLog-introduction.md)
4338

44-
### 有序集合
39+
### 7. [Bitmap 位图](/docs/redis-bitmap-introduction.md)

docs/redis-bitmap-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis Bitmap 结构底层原理剖析

docs/redis-hash-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis Hash 结构底层原理剖析
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis HyperLogLog 结构底层原理剖析

docs/redis-set-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis Set 结构底层原理剖析

docs/redis-sorted-set-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis Sorted Set 结构底层原理剖析

docs/redis-string-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Redis String 结构底层原理剖析

0 commit comments

Comments
 (0)