diff options
author | Jerry Chan 29 <791603901@qq.com> | 2021-06-26 10:04:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 19:04:04 -0700 |
commit | b71c5849e3e5c040b029c6e25cec2069d70760c1 (patch) | |
tree | 4d9e8736771fea2cd575dc86750c810bd7424b28 /README.md | |
parent | f233c4c59d24828c77eb1118f837eaee14695f7f (diff) | |
download | redis-b71c5849e3e5c040b029c6e25cec2069d70760c1.tar.gz |
Fix link in README (#9145)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -452,9 +452,9 @@ Other C files * `anet.c` is a library to use POSIX networking in a simpler way compared to the raw interface exposed by the kernel. * `dict.c` is an implementation of a non-blocking hash table which rehashes incrementally. * `scripting.c` implements Lua scripting. It is completely self-contained and isolated from the rest of the Redis implementation and is simple enough to understand if you are familiar with the Lua API. -* `cluster.c` implements the Redis Cluster. Probably a good read only after being very familiar with the rest of the Redis code base. If you want to read `cluster.c` make sure to read the [Redis Cluster specification][3]. +* `cluster.c` implements the Redis Cluster. Probably a good read only after being very familiar with the rest of the Redis code base. If you want to read `cluster.c` make sure to read the [Redis Cluster specification][4]. -[3]: https://redis.io/topics/cluster-spec +[4]: https://redis.io/topics/cluster-spec Anatomy of a Redis command --- |