5 ms·
My understanding of what the OP was discussing is an optimistic locking system where the nodes only accept commits if the last issued token matches the token in
by computerfan494 2y ago
My understanding of what the OP was discussing is an optimistic locking system where the nodes only accept commits if the last issued token matches the token included in the commit. While agreeing on the last token requested requires coordination, unlike monotonically increasing tokens you could have well-behaved clients generate token content themselves without coordination. That may or may not be useful as a property.
- bootsmann 2y agoGot it, thank you for clarifying this.