Category
page 1Logical clock algorithms
Lamport timestamps
a simple algorithm used to determine the order of events in a distributed computer system
vector clock
algorithm for partial ordering of events and detecting causality in distributed systems
logical clock
mechanism for capturing chronological and causal relationships
happened-before
In computer science, the happened-before relation (denoted: \to \;) is a relation between the result of two events, such that if one event should happen before another event, the result must reflect that, even if those events are in reality executed out of order (usually to optimize program flow). This involves ordering events based on the potential causal relationship of pairs of events in a concurrent system, especially asynchronous distributed systems. It was formulated by Leslie Lamport.