LUC.DVVSet 1.0.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package LUC.DVVSet --version 1.0.0.2
NuGet\Install-Package LUC.DVVSet -Version 1.0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LUC.DVVSet" Version="1.0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LUC.DVVSet --version 1.0.0.2
#r "nuget: LUC.DVVSet, 1.0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LUC.DVVSet as a Cake Addin
#addin nuget:?package=LUC.DVVSet&version=1.0.0.2

// Install LUC.DVVSet as a Cake Tool
#tool nuget:?package=LUC.DVVSet&version=1.0.0.2

We are presenting the compact version of the original Dotted Version Vectors(DVV), which we call Dotted Version Vector Sets (DVVSet). Like its predecessor, DVVSet still accurately describes causality between related or conflicting values (values that reflect concurrent updates and that must be all kept until a future reconciliation supersedes them), but now with a smaller representation, very similar to Version Vectors in size.

Lets assume the scenario of a Distributed Key-Value Store (Ex: Riak, Cassandra, etc), where we have clients, servers and we can write ( PUT ) and read ( GET ) values. We also want to track the causality information of these values, so that causally descendant values replace older values and causally concurrent values are all kept (for further reconciliation).

We can use DVVSet to keep the values and their causal history together, with support for multiple conflicting values (siblings). One DVVSet has 1 value (a single sibling) if there are no conflicts. Otherwise, it stores all siblings and their relevant causal information in a single DVVSet. Thus, this data structure encapsulates the tracking, maintaining and reasoning about the values' causality.

This is adaptation from Erlang to C#
Original code: https://github.com/ricardobcl/Dotted-Version-Vectors

Product Compatible and additional computed target framework versions.
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.3.6 159 5/5/2023
1.0.3.6 490 2/5/2022
1.0.3.5 431 2/5/2022
1.0.3.1 420 1/13/2022
1.0.3 438 1/13/2022
1.0.2 433 1/12/2022
1.0.1 312 12/12/2021
1.0.0.4 453 12/11/2021
1.0.0.3 332 9/4/2021
1.0.0.2 367 6/15/2021
1.0.0.1 314 6/13/2021
1.0.0 330 6/13/2021

Added method StringToClock. Now we have a self-made serialization and deserialization of Clock values.