Popularity
7.7
Declining
Activity
0.0
Stable
223
17
14

Monthly Downloads: 2
Programming language: Elixir
License: Apache License 2.0
Latest version: v0.0.10

loom alternatives and similar packages

Based on the "Algorithms and Data structures" category.
Alternatively, view loom alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of loom or a related project?

Add another 'Algorithms and Data structures' Package

README

Loom

Build Status Coverage Status Docs Status Hex docs Current Release License Apache2

Loom is a set of basic CRDT's that are designed to be composable and extensible. We include support for delta-CRDT's (δ-CRDT's) where it makes sense.

δ-CRDT's

In order to combat issues with large objects, δ-CRDT's are supported for some datatypes. You can extract deltas from delta-CRDT's, and periodically clear them out from your datastructures to reduce memory constraints.

What the heck is a CRDT?

Conflict-free, Coordination-free, Commutative, or Convergent datatypes, CRDT's are usually formally described as "join semi-lattices". Mathematical jargon aside, CRDT's track causality for modifications to your data. Because of this, time becomes less relevant, and coordination becomes unnecessary to get accurate values for your data.

Can you give me an example of one?

I will have a simple explanation here for a basic gcounter and a pncounter.

For now, I can simply point you to the GCounter code in here.

Where can I learn more?


*Note that all licence references and agreements mentioned in the loom README section above are relevant to that project's source code only.