Re: CRDT appending

2016-01-13 Thread Eugene Shubin
Hello Vitaly, I use Erlang client and riak 2.1.1. It works, but very slow comparing to insertion of multiple values. Best regards, Eugene 2016-01-13 14:09 GMT+01:00 Vitaly E <13vitam...@gmail.com>: > Hi Eugene, > > Which client are you using? Which Riak version? > In the Java client it is possi

Re: CRDT appending

2016-01-13 Thread Vitaly E
Hi Eugene, Which client are you using? Which Riak version? In the Java client it is possible to send an update without fetching a CRDT first. For example: MapUpdate changes = new MapUpdate() .update(ARTIFACT, new RegisterUpdate(artifact)) .update(VERSIONS, new SetUpdate().add(ver

Re: CRDT appending

2016-01-13 Thread Russell Brown
If you just send the add operation the client doesn’t need to fetch the value first, no. But riak, inside the vnode, will still do a local read at the coordinating vnode. On 13 Jan 2016, at 12:54, Eugene Shubin wrote: > With CRDT it's not possible to append a value to map or set without fetchi