10:09:28 GMT How safe is redis cluster in prod ? 14:06:57 GMT hi people. is there some python connector with geospatial suport? 14:13:18 GMT anyone? 21:50:08 GMT var redis = require('redis'); var client = redis.createClient(); var count = 0; client.on('message', function(channel, msg) { count += 1 console.log "received request ##{count}" }); client.subscribe('msg'); 21:50:34 GMT when i start i immediately see the count go up to around 600 21:50:57 GMT and it continues on until i exit the process 21:51:44 GMT do i need to tell redis the message is handled? 21:53:34 GMT nope 21:53:52 GMT you could print the message to see why it's called so often 21:53:59 GMT also, no semicolons? 21:55:04 GMT sorry, i translated from coffeescript by hand 21:55:53 GMT i'm using logstash for sending messages 21:56:16 GMT i suppose logstash is sending all of the messages 21:56:42 GMT i don't have that many requests a second though so it makes me think the message are just sitting in a channel and not being removed 21:57:31 GMT pubsub messages aren't buffered if there's no client connected 21:59:02 GMT oh, then it just accepts a message and discards it if no clients are connected? 22:16:50 GMT redis-cli --stat 22:16:50 GMT 17 1017.41K 2 0 89885 (+1) 123 22:17:13 GMT 17 1017.41K 2 0 91835 (+209) 123 22:17:17 GMT not really sure what i'm seeing 22:17:33 GMT oh nevermind 22:18:08 GMT memory seems to be low at 1mb 22:18:14 GMT i have 17 keys, not sure how 22:19:36 GMT keys * 22:20:06 GMT looks like a bunch of old keys from months ago when tinkering and i just need to flush 22:20:15 GMT sorry for the confusion