Re: riak newbie

2012-06-21 Thread Clinton Shryock
Alternatively if you have git available you can simply clone basho/riak from GitHub: > $ git clone git://github.com/basho/riak.git > $ cd riak > $ make all > $ make devrel After that you should have your 4 node dev environment up and be able to continue with the guide. +Clint On Jun 21, 2012,

riak newbie - 4 node setup

2012-06-21 Thread Anand Hegde
I am trying to get the 4 node setup working on my os x lion machine. I installed riak using $ brew install riak I am using the online documentation available - http://wiki.basho.com/Building-a-Development-Environment.html I am stuck on this step - "Use rebar to start up four nodes. " After ins

Re: riak newbie

2012-06-21 Thread Brian Roach
Hi Anand, The brew install actually gives you compiled code, and no makefile. In addition, the startup scripts are slightly different that when installing from source. I recently answered the same question on StackOverflow which should point you in the right direction: http://stackoverflow.com

riak newbie

2012-06-21 Thread Anand Hegde
I am trying to get the 4 node setup working on my os x lion machine. sorry If you are getting this a second time but I think my first mail got lost because I was a non member. I installed riak using $ brew install riak I am using the online documentation available - http://wiki.basho.com/Buildi

Re: Riak newbie, need to know if I can switch from Cassandra for a messageQueue For Erlang

2012-05-11 Thread Eric Moritz
I am guessing that in Cassandra that each user's mailbox has a single row key and each message has a lexicographic or timestamp for a column key to preserve order. This can be emulated by using a bucket name as the row key, something like "mailbox-{user-key}" for the bucket and the lexicographic k

Re: Riak newbie, need to know if I can switch from Cassandra for a messageQueue For Erlang

2012-05-09 Thread Morgan Segalis
Hi Bogunov, Thank you for your fast answer. If I understand correctly your though, for every insert, I should retrieve the list of message, append a new message and then store the list again ? If it is, doesn't it performance eating ? retrieve a whole list (that can be long if the user has not

Riak newbie, need to know if I can switch from Cassandra for a messageQueue For Erlang

2012-05-09 Thread Morgan Segalis
Hi everyone ! I have followed with interest the riak evolution. I have a chat server written in Erlang from scratch with my own protocol. Right now I'm using MySQL in order to store Users credentials and friend list. I'm using Cassandra via thrift to store message that an offline user has got,