02:17:51 GMT Hi 02:18:28 GMT Currently i setup redis cluster with 3 master (and 3 replicas) 02:18:51 GMT i want to know, should i register all redis list to application ? 02:19:05 GMT or some redis ? 08:04:36 GMT I'm trying to use redis as a backend for a counter for how many instances of an application I'm building are running. Each instance of the application will report every hour that it's online, with a GUID and the client version. What would be the best way to store & retrieve a count for how many clients have pinged in the last two hours? 08:05:39 GMT I was thinking either using a sorted set with uuids and score being time of ping, or just each uuid being an individual key which expires in 2 hours, and counting them 08:06:12 GMT I'm not too much of an expert at redis though, would anyone be willing to give input on which would be better, or if there's another way? 10:09:22 GMT can i search inside in list in redis ?? 10:09:38 GMT rather than taking whole list and then matching there ? 10:31:55 GMT dudeji: use a set if you want to check membership 10:32:04 GMT okey 14:34:03 GMT I have a redis server on one machine, and then roughly 10 other machines (all in amazon) that connect to that redis for a job queue system (resque). We don't dump to disk, or have replication or slaves/secondaries. I'm experiencing an issue where, seemingly randomly, various machines will fail to connect to redis. I've got a monitoring script on th 14:34:03 GMT e machine running redis itself, and it never experiences this issue 14:34:19 GMT does anyone know what could cause this, and/or what I could try to debug the issue? 14:34:48 GMT I've also looked at the info stats for the redis server, and it says there have been no connections dropped due to hitting the max limit 14:38:22 GMT here's my CONFIG GET '*' https://gist.github.com/mordof/e7821bf11691926c33f8a62f6aa47546 14:41:54 GMT and here's my INFO output https://gist.github.com/mordof/bb551641e3cf7c58fe22305d1d2ffa4b 19:30:38 GMT Hello all, redis.io/clients seems to be down 19:31:00 GMT It's returning a blank page for me 19:31:53 GMT < HTTP/1.1 500 Internal Server Error 19:32:01 GMT definitely bork 21:38:25 GMT hi