vault backup: 2025-03-17 22:52:45

This commit is contained in:
Marco Realacci 2025-03-17 22:52:45 +01:00
parent a697a004f6
commit daf75af6b3
2 changed files with 11 additions and 4 deletions

View file

@ -105,3 +105,10 @@ The **casual past** of a transaction T is the set of all T' and T'' such that
VWC allows more transactions to commit -> it is a more liberal property than opacity.
![[Pasted image 20250317105355.png]]
#### A Vector clock based STM system
We have m shared MRMW registers; register X is represented by a pair XX, with:
- XX.val the current value of X
- XX.depend[1...m] a vector clock s.t.
- XX.depend[X] is the sequence number associated with the current value of X
- XX.depend[Y] is the sequence number associated with the value of Y on which the current value of X depends from