Skip to content

Commit 4810428

Browse files
committed
readme
1 parent 875650e commit 4810428

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build Your Own Redis in Rust
22

33
This project is to build a toy Redis-Server clone that's capable of parsing Redis protocol and handling basic Redis commands, parsing and initializing Redis from RDB file,
4-
supporting leader-follower replication, redis streams.
4+
supporting leader-follower replication, redis streams (queue), redis batch commands in transaction.
55

66
You can find all the source code and commit history in [my github repo](https://github.com/fangpin/redis-rs).
77

@@ -264,3 +264,4 @@ Examples of Redis stream use cases include:
264264
## Transaction
265265
When *MULTI* command is called in a connection, redis just queued all following commands until *EXEC* or *DISCARD* command is called.
266266
*EXEC* command will execute all queued commands and return an array representation of all execution result (including), instead the *DISCARD* command just clear all queued commands.
267+
The transactions among each client connection are independent.

0 commit comments

Comments
 (0)