Re: using riak to store user sessions

2016-06-03 Thread Alex Moore
Hi Norman, It's still the case. Riak KV was designed to be highly available, and highly scalable key/value store with predictable low latency. This lets you scale to a few or as many machines as needed, while removing any single failure points that a single-machine database or cache might impose.

Re: using riak to store user sessions

2016-06-02 Thread Norman Khine
hi luke, thanks for the reply, in the riak document "Riak KV is uniquely architected to handle user and session data..." or is this no longer the case? On 2 June 2016 at 17:40, Luke Bakken wrote: > > Hi Norman, > > A quick search turns up this Node.js module: > https://www.npmjs.com/package/expr

Re: using riak to store user sessions

2016-06-02 Thread Luke Bakken
Hi Norman, A quick search turns up this Node.js module: https://www.npmjs.com/package/express-session There is currently not a session store for Riak (https://www.npmjs.com/package/express-session#compatible-session-stores) Since memcached operates as a key/value store, forking the connector for

using riak to store user sessions

2016-06-02 Thread Norman Khine
hello, i am trying to setup a node.js/express application to use riak to store the logged in users' sessions as detailed http://basho.com/use-cases/session-data/ i have setup the dev cluster on my machine and everything is running fine. what is the correct way to set this up? any advise much app