On 10/22/2014 03:29 AM, Alex Regan wrote:
I have the database in a replicated mysql database for now. I'd like to go to redis, but it's not quite ready for distributed configurations, correct?
What do you mean by "distributed configurations"? - many clients querying a central Redis DB? - real clustering? - something like mysql dual master? Redis *does* support master/slaves config. plus failover handling via Sentinel (http://redis.io/topics/sentinel) Redis does *not* support full clustering. (atm...Redis cluster is RC1) all this you can read on http://redis.io h2h Axb