DottedLattice

kofre.dotted.DottedLattice
trait DottedLattice[A] extends Lattice[Dotted[A]]

The delta CRDT paper introduces a lot of individual abstractions that all do a lot of cool stuff, but often not separated into their pieces. This is one of those pieces systematically handling removals based on metadata.

The context encodes dots that have been seen. The store of type A is assumed to be something that stores individual information per dot. We represent removals as context that contains a dot, but a store that no longer contains the dot. Thus, when merging the abstract logic is somewhat along the lines of: Both contain the (dot, value) pair? => merge value recursively. Only one contains the dot in the context? => keep that value. Both contain the dot, but at least one has no matching value? => remove all values for that dot.

Separating into a mergePartial allows extracting the context into the outermost layer reducing metadata overhead.

Attributes

Graph
Supertypes
trait Lattice[Dotted[A]]
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

def mergePartial(left: Dotted[A], right: Dotted[A]): A

Concrete methods

override def lteq(left: Dotted[A], right: Dotted[A]): Boolean

Lattice order is derived from merge, but should be overridden for efficiency

Lattice order is derived from merge, but should be overridden for efficiency

Attributes

Definition Classes
def merge(left: Dotted[A], right: Dotted[A]): Dotted[A]

By assumption: associative, commutative, idempotent.

By assumption: associative, commutative, idempotent.

For use with Delta CRDTs, this function should be optimized for the case that left >> right, i.e., that left is the current state and right the delta

Attributes

Inherited methods

def bimap[B](to: Dotted[A] => B, from: B => Dotted[A]): Lattice[B]

Attributes

Inherited from:
Lattice

Extensions

Extensions

extension (left: Dotted[A])
def dotmerge(right: Dotted[A]): A

Inherited extensions

extension (left: A)
def <=(right: A): Boolean

Lattice order is derived from merge, but should be overridden for efficiency

Lattice order is derived from merge, but should be overridden for efficiency

Attributes

Inherited from:
Lattice
def merge(right: A): A

Attributes

Inherited from:
Lattice