02:16:54 GMT is it sane to use redis over ssh tunnelling? just for occasional notifications i mean, not super performance 16:14:57 GMT Is there any setting I need to change so a SET on a slave replicates to the master/all other slaves 16:43:15 GMT Fabricio20: that's not what a slave is… you need master-master replication for that. redis doesn't have that 16:43:39 GMT yeah, kinda figured it out after reading some docs haha 18:44:44 GMT can redis be used as backbone for a matchmaking lobby? 19:00:26 GMT a what? 19:00:38 GMT Redis can be used for nearly all use cases you can think of 19:00:45 GMT whether it's always a good idea is another thing 19:01:56 GMT sounds like a good match (no pun intended) at first thought, ReScO 19:02:18 GMT Basically, i know the region, i know the ranks 19:02:32 GMT But thinking up a good way to tie it all together in redis, beats me :( 19:04:26 GMT Basically, i was thinking the following: "lfg" message comes in, data is parsed and the data is thrown in a "pool", another application reads the pool and tries to sort the users into region and then the user's rank, then it tries to put the users into groups of 5 19:04:43 GMT How can I use redis effectively here? 19:28:06 GMT minus? 19:28:33 GMT hi 19:39:29 GMT ReScO: i'd create a sorted set per region and throw in the waiting players there, using their rank as score. when a new one joins, check the ±5 users around their score (maybe with a maximum score deviation limit) using zrangebyscore