Skip to content

Commit ffebdf2

Browse files
authored
Merge pull request Snailclimb#15 from hbignlin/patch-1
Update d-2-redis.md
2 parents 1da7929 + 988aaae commit ffebdf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/d-2-redis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ OK
225225
下面我们简单看看它的使用!
226226

227227
```bash
228-
127.0.0.1:6379> hset userInfoKey name "guide" description "dev" age "24"
228+
127.0.0.1:6379> hmset userInfoKey name "guide" description "dev" age "24"
229229
OK
230230
127.0.0.1:6379> hexists userInfoKey name # 查看 key 对应的 value中指定的字段是否存在。
231231
(integer) 1
@@ -677,4 +677,4 @@ Cache Aside Pattern 中遇到写请求是这样的:更新 DB,然后直接删
677677
* 《Redis 设计与实现》
678678
* Redis 命令总结:http://Redisdoc.com/string/set.html
679679
* 通俗易懂的 Redis 数据结构基础教程:[https://juejin.im/post/5b53ee7e5188251aaa2d2e16](https://juejin.im/post/5b53ee7e5188251aaa2d2e16)
680-
* WHY Redis choose single thread (vs multi threads): [https://medium.com/@jychen7/sharing-redis-single-thread-vs-multi-threads-5870bd44d153](https://medium.com/@jychen7/sharing-redis-single-thread-vs-multi-threads-5870bd44d153)
680+
* WHY Redis choose single thread (vs multi threads): [https://medium.com/@jychen7/sharing-redis-single-thread-vs-multi-threads-5870bd44d153](https://medium.com/@jychen7/sharing-redis-single-thread-vs-multi-threads-5870bd44d153)

0 commit comments

Comments
 (0)