Skip to content

Latest commit

 

History

History
74 lines (51 loc) · 2.4 KB

tpl.readme.md

File metadata and controls

74 lines (51 loc) · 2.4 KB

About

{{pkg.description}}

Vector clock algorithm:

  • Initially all clocks are zero.
  • Each time a process experiences an internal event, it increments its own logical clock in the vector by one (inc()).
  • Each time a process sends a message, it increments its own logical clock in the vector by one and then sends a copy of its own vector.
  • Each time a process receives a message, it increments its own logical clock in the vector by one and updates each element in its vector by taking the maximum of the value in its own vector clock and the value in the vector in the received message (merge()).

The package provides the following immutable vector clock operations, where vector clocks are plain JS objects:

  • inc(clock, id) - increment (or create) clock component
  • remove(clock, id) - remove clock component
  • merge(a, b) - merge two vector clocks
  • signedSkew(a, b) - max signed difference between vector clocks
  • absSkew(a, b) - max unsigned difference between vector clocks
  • compare(a, b) - comparator for logically ordering vector clocks
  • isBefore(a, b) - true if a < b
  • isAfter(a, b) - true if a > b
  • isConcurrent(a, b) - if both clocks represent concurrent updates
  • equiv(a, b) - equality predicate
  • orderAsc(a, b) - alias for compare()
  • orderDesc(a, b) - reverse order to orderAsc()

References:

{{meta.status}}

{{repo.supportPackages}}

{{repo.relatedPackages}}

{{meta.blogPosts}}

Installation

{{pkg.install}}

{{pkg.size}}

Dependencies

{{pkg.deps}}

{{repo.examples}}

API

{{pkg.docs}}

TODO