Replies: 2 comments 4 replies
-
This is still maintaining the read-after-write semantic. When you issue multiple async requests (put, get, delete), without waiting for their completion, the order in which the operations are applied does not have to necessarily be guaranteed. What it's important to guarantee is that after a successful put/delete operation is completed, every other subsequent request will see the effect of the previous operation. |
Beta Was this translation helpful? Give feedback.
-
One other update here. We have strengthened the ordering semantics of write/delete operations by swtichting to use a It's now guaranteed that issuing multiple async requests eg:
will be guaranteed to be applied in order |
Beta Was this translation helpful? Give feedback.
-
I have read the client's implement,and as far as i understand:
So, there is 2 scene:
Did this will happen?
Beta Was this translation helpful? Give feedback.
All reactions