Riak Java Protobuf objects

2014-01-21 Thread Jon Brisbin
Have the Riak Java Protobuf artifacts been updated to take advantage of Riak 2.0 features yet? I'd like to work some more on getting the Riaktor (Riak async Java client based on Reactor [1]) up to Riak 2.0 functionality. Currently I'm using the Protobuf artifact for the actual objects I need

Re: Riak Java Protobuf objects

2014-01-21 Thread Guido Medina
At Maven central repos it has yes: https://repository.sonatype.org/index.html#nexus-search;quick~riak-pb HTH, Guido. On 21/01/14 14:22, Jon Brisbin wrote: Have the Riak Java Protobuf artifacts been updated to take advantage of Riak 2.0 features yet? I'd like to work some more on getting

Re: Riak Java Protobuf objects

2014-01-21 Thread Brian Roach
Jon, Yes, we released riak_pb 2.0.0.11 to maven central for the new Riak Java Client v2.0 core preview (the all-new official async Riak Java client based on Netty[1]) we announced a couple weeks ago - it supports all the new Riak 2.0 functionality. dependency

Re: Riak Java Protobuf objects

2014-01-21 Thread Jon Brisbin
Is the Protobuf interaction still enforced sequentially? e.g. responses only come in the order in which the corresponding request was sent and a long request will hold up the results of subsequent, but smaller requests? I guess the answer for parallelism is to simply use a pool of connections.

Re: Riak Java Protobuf objects

2014-01-21 Thread Brian Roach
On Tue, Jan 21, 2014 at 10:58 AM, Jon Brisbin j...@jbrisbin.com wrote: Is the Protobuf interaction still enforced sequentially? e.g. responses only come in the order in which the corresponding request was sent and a long request will hold up the results of subsequent, but smaller requests?