08:21:19 GMT is there any benchmark for read operations ? 08:21:26 GMT or read and write both are same 08:33:53 GMT both are in-memory at least :) 08:34:05 GMT there is a benchmarking tool with redis ... 08:34:09 GMT you can test whatever you want 20:30:51 GMT hi everyone, i have a simple redis master/slave config (not a cluster). i am going to move redis to new machines and trying to figure out the safest way to do this. i was planning on joining the new machines to the master and setting "slave-read-only no" on the future master. then restarting all my services to begin writing on the new node. 20:32:07 GMT this is the comment that im reading: http://pastie.org/10951324 does this mean that i cant simply set allow writes on the slave and when everything is moved to set "slave of no one" 20:45:15 GMT that should work, but if you can spare the moment you could just un-slave the new instance after shutting down your services and before restarting them with new config 20:49:53 GMT minus: thanks! ill think about doing that. just to make sure i understand correctly: 20:50:15 GMT reading here: http://redis.io/topics/replication it says "While those writes will be discarded if the slave and the master resynchronize or if the slave is restarted," 20:51:22 GMT when saying resynchronize is this for a full SYNC or is it also for PSYNC 20:52:04 GMT i guess what im asking is in what situation will those ephemeral writes disappear 20:52:48 GMT i always assumed it'll just override keys if they changed on the master 20:53:11 GMT didn't know that the data doesn't survive a restart either 20:55:45 GMT i guess it'll work as long as you disable the instance being a slave afterwards, but if the data is important i'd just take the couple seconds of downtime 23:48:31 GMT i'm setting up a few nginx boxes behind a load balancer 23:48:53 GMT and i was thinking if its a better approach to have a redis instance on each of them and have them in a cluster 23:49:08 GMT or have a separate node with redis 23:49:13 GMT where all connect to 23:49:17 GMT any ideas ?