04:26:31 GMT I have a Python app that saves state. When I deploy new code, the state will get wiped. Is Redis a good solution to this? By state I mean something like: who's turn it is, who is winning, in a toy card game server. 07:04:14 GMT hi, is there a command that when I want to insert a hash to redis, if the data I want to insert is the same as in redis, then just ignore ? 07:04:39 GMT just avoid insrting the same data 09:53:43 GMT What would be the best way to have some failover possibilities with a 2-node redis setup? :) 09:54:00 GMT I guess Sentinel is the best option? And eventually run sentinel on the 2 webservers also? 09:56:47 GMT yes, sentinel 09:56:58 GMT you should run an uneven number of sentinels though 09:58:21 GMT mmm, cause we have 2 webservers, 2 redis/mysql servers and 2 loadbalancers :P 09:58:29 GMT its like, not uneven :p 09:59:19 GMT http://redis.io/topics/sentinel => Example 4: Sentinel client side with less than three clients 09:59:22 GMT should work? 10:23:08 GMT i guess so if the docs say 10:23:16 GMT they're more of an authority than me ;D 10:37:40 GMT sentinel myid => the myid should be the same or different for each node? 11:13:32 GMT last question: is there a way to force sentinel to always try to master 1 specific node? 23:03:10 GMT how do I create more than 1 redis database? 23:03:24 GMT on the same host machine