Can you please help me in these questions:
- Is the write operation in RIAK atomic?
- Is the write operation durable?
- How is concurrent write handled?
- Does RIAK support transactions?
Thank you
Can you please help me in these questions:
Thank you
the most interesting characteristic of riak is how it handles concurrent writes to the same key. While Writes are not atomic, Riak is able to detect those conflicts and will keep all conflicting versions of the value. the next time you request those, riak will return all of them letting you decide how you go about that. (this means, that you can resolve that conflict in software, pretty much like you can resolve a merge conflict in your IDE)