uploads/Home/RedisHelper-guide.md
... ...
@@ -57,17 +57,16 @@ redis.password=
57 57
```
58 58
59 59
### 2.3 参数说明
60
-| 参数名 | 类型 | 必填 | 默认值 | 说明 |
61
-| ------------------- | ------- | ----------------- | --------- | ----------------------------------- |
62
-| redis.mode | String | 是 | single | Redis 模式:single/cluster/sentinel |
63
-| redis.host | String | 单机模式必填 | 127.0.0.1 | Redis 主机地址 |
64
-| redis.port | Integer | 单机模式必填 | 6379 | Redis 端口 |
65
-| redis.cluster.nodes | String | 集群/哨兵模式必填 | - | 节点地址,逗号分隔 |
66
-| redis.master | String | 哨兵模式必填 | - | 哨兵主节点名称 |
67
-| redis.db | Integer | 否 | 0 | 数据库索引 |
68
-| redis.password | String | 否 | - | 认证密码 |
69
-| redis.timeout | Integer | 否 | 2000 | 连接超时时间(ms) |
70
-| | | | | |
60
+| 参数名 | 类型 | 必填 | 说明 |
61
+| ------------------- | ------- | ----------------- | ----------------------------------- |
62
+| redis.mode | String | 是 | Redis 模式:single/cluster/sentinel |
63
+| redis.host | String | 单机模式必填 | Redis 主机地址 |
64
+| redis.port | Integer | 单机模式必填 | Redis 端口 |
65
+| redis.cluster.nodes | String | 集群/哨兵模式必填 | 节点地址,逗号分隔 |
66
+| redis.master | String | 哨兵模式必填 | 哨兵主节点名称 |
67
+| redis.db | Integer | 否 | 数据库索引 |
68
+| redis.password | String | 否 | 认证密码 |
69
+| redis.timeout | Integer | 否 | 连接超时时间(ms) |
71 70
72 71
## 3. 命名规范
73 72