Skip to content

ericmoritz/riak_crdt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

riak_crdt is a CRDT loader for Riak using the crdt API

Usage

from riak_crdt.loader import Loader
from crdt.sets import LWWSet
from riak import RiakClient

client = RiakClient()
bucket = client.bucket("friends")

with Loader(LWWSet, bucket," "eric") as (loader, friend_set):
    friend_set.add("tom")

What just happened?

  1. The loader fetched the riak object at friends/eric
  2. If the object did not exist, a new LWWSet is created
  3. If the object did exist but had siblings, the LWWSet.merge method resolves the conflict.
  4. Otherwise, a LWWSet is used using the riak object's payload
  5. After the with block concludes, the Loader stores the object

Refer to the crdt README for more details.

About

A Riak loader for CRDTs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages