vectorclock-rs

Crates.iovectorclock-rs
lib.rsvectorclock-rs
version0.0.1
sourcesrc
created_at2015-04-06 19:29:32.02454
updated_at2015-12-11 23:59:34.806356
descriptionVector clock implementation for distributed systems
homepagehttps://github.com/mhallin/vectorclock-rs
repository
max_upload_size
id1789
size6,402
Magnus Hallin (mhallin)

documentation

README


Vector Clocks for Rust


.. image:: https://travis-ci.org/mhallin/vectorclock-rs.svg?branch=master :target: https://travis-ci.org/mhallin/vectorclock-rs

A Vector Clock_ is a data structure and algorithm for detecting partial ordering of events in distributed systems. This is an implementation for Rust.


Usage

Add vectorclock to your Cargo.toml:

.. code:: toml

[dependencies] vectorclock = "*"

The data structure is contained in the VectorClock<HostType> generic struct. You specialize this struct based on how you identify your processes, via IP addresses, usernames, Uuids, or anything else.

Look at the tests in clock.rs_ for usage examples.

.. _Vector Clock: http://en.wikipedia.org/wiki/Vector_clock .. _clock.rs: src/clock.rs

Commit count: 0

cargo fmt