Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
carlclone committed Dec 16, 2022
1 parent c4dc0bf commit 51f7d91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ WHILE TRUE:
>
> 学生提问:对于高负载的场景该如何处理呢?
>
> Robert教授:我们可以在SETDATA失败之后等待一会。我会这么做,首先,等待(sleep)是必须的,其次,等待的时间每次需要加倍再加上一些随机。这里实际上跟Raft的Leader Election里的Exceptional back-off是类似的。这是一种适应未知数量并发客户端请求的合理策略。
> Robert教授:我们可以在SETDATA失败之后等待一会。我会这么做,首先,等待(sleep)是必须的,其次,等待的时间每次需要加倍再加上一些随机。这里实际上跟Raft的Leader Election里的Exponential back-off是类似的。这是一种适应未知数量并发客户端请求的合理策略。
>
> 学生提问:提问过程比较长,听不太清,大概意思就是想使用WATCH机制来解决上面的 $$O(n^2)$$ 的问题。
>
Expand Down

0 comments on commit 51f7d91

Please sign in to comment.