Home / cs-notes / Architecture / Components / Database / Redis / Transaction / EXEC
- 若干命令加入队列
- 收到 EXEC 命令,开始执行队列中的命令
- 中间命令失败时
- 前面的命令不回滚
- 后面的命令仍然继续执行
- 中间命令失败时
- 事务执行过程中,其他命令不会插入到命令序列中
Home / cs-notes / Architecture / Components / Database / Redis / Transaction / EXEC