summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorzheng.ren01@mljr.com <renzheng0526@163.com>2019-06-25 18:34:35 +0800
committerzheng.ren01@mljr.com <renzheng0526@163.com>2019-06-25 18:34:35 +0800
commit2d236d7aecbf12373618191b7ef4b2365d487c6f (patch)
treee4366443459b1b351e7aac20ec0748f83be5594f /README.md
parent0cabe0cfa7290d9b14596ec38e0d0a22df65d1df (diff)
downloadredis-2d236d7aecbf12373618191b7ef4b2365d487c6f.tar.gz
fix readme.md,Redis data types should add `t_stream.c`.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6c9435b53..3442659e6 100644
--- a/README.md
+++ b/README.md
@@ -406,7 +406,7 @@ replicas, or to continue the replication after a disconnection.
Other C files
---
-* `t_hash.c`, `t_list.c`, `t_set.c`, `t_string.c` and `t_zset.c` contains the implementation of the Redis data types. They implement both an API to access a given data type, and the client commands implementations for these data types.
+* `t_hash.c`, `t_list.c`, `t_set.c`, `t_string.c`, `t_zset.c` and `t_stream.c` contains the implementation of the Redis data types. They implement both an API to access a given data type, and the client commands implementations for these data types.
* `ae.c` implements the Redis event loop, it's a self contained library which is simple to read and understand.
* `sds.c` is the Redis string library, check http://github.com/antirez/sds for more information.
* `anet.c` is a library to use POSIX networking in a simpler way compared to the raw interface exposed by the kernel.