You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Build Your Own Redis in Rust
2
2
3
3
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,
You can find all the source code and commit history in [my github repo](https://github.com/fangpin/redis-rs).
7
7
@@ -264,3 +264,4 @@ Examples of Redis stream use cases include:
264
264
## Transaction
265
265
When *MULTI* command is called in a connection, redis just queued all following commands until *EXEC* or *DISCARD* command is called.
266
266
*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