Riak 1.0
basho.com
Riak 1.0
1–10 of 40 posts
Re: Riak 1.0
#2Re: Riak 1.0
#3 Riak 1.0 will be available later this month. To preview
some of the new features, download Riak, or to inquire
about a commercial deployment, please visit http://www.basho.com.
Their github page still just has 1.0-rc1 tagged. I'm excited though.Re: Riak 1.0
#4I can't stand pre-announcements like this.
Re: Riak 1.0
#5"Riak 1.0 will be available later this month." I can't stand pre-announcements like this.
Re: Riak 1.0
#6"Riak 1.0 will be available later this month." I can't stand pre-announcements like this.
http://downloads.basho.com/riak/riak-1.0.0rc1/
I just did a rolling upgrade from 1.0b4, and it went smoothly. I love the LevelDB support, and it's holding up well under the considerable load that I'm throwing at it.
Re: Riak 1.0
#7LevelDB support! Would love to see how it compares to Bitcask in terms of speed.
LevelDB seems mostly well suited for data that becomes (in terms of key size and number of keys) bigger than your RAM...
Re: Riak 1.0
#8LevelDB support! Would love to see how it compares to Bitcask in terms of speed.
I imagine it won't be as fast? The cool thing about Bitcask is that all of the keys are in memory - I imagine that would also be beneficial with secondary indexes now supported... LevelDB seems mostly well suited for data that becomes (in terms of key size and number of keys) bigger than your RAM...
Re: Riak 1.0
#9Re: Riak 1.0
#10LevelDB support! Would love to see how it compares to Bitcask in terms of speed.
Level also has to look down the entire tree if a key is missing. This means inserts end up being more expensive than reads or updates (which are all just a hash lookup in Bitcask).