|
|
|
|
|
by stingraycharles
2653 days ago
|
|
I find vector clocks to introduce a lot of complexity. In our case, we just use PostgreSQL to handle ordering. When committing an event into PostgreSQL, you verify that the last committed event for your stream is still what you expect it to be (i.e. CAS), and you have strong ordering. Vector clocks I typically want to stay away from as far as possible. |
|