16:24:34 GMT if I BRPOPLPUSH inside an EVAL, does it freeze Redis until a member is present in the source list? 16:26:52 GMT I'm implementing a job queue in Redis using Go + Redis Lua Scripting. 16:27:32 GMT ScioMin: you can't do blocking commands from Lua 16:29:26 GMT badboy_, thanks. 16:50:01 GMT that would be possible if stuff was coroutines 17:43:07 GMT minus, I'm using Go's goroutines each calling BRPOPLPUSH which blocks. This lets me get away with not having to inneficciently pool Redis for new members. 17:45:30 GMT The thing is when a member is found I need to do some extra Redis operations for processing. I would love to be able to use BRPOPLPUSH at the start of a Lua script and have Redis only freeze when that BRPOPLPUSH resolved. 17:46:49 GMT Sentinel arch question. I will soon have 2 very nice servers to run redis on, but I know this isn't enough for a quorum. Can I bring up a 3rd lightweight server to be a 3rd member to only act as an arbiter, never to take over itself? 17:50:49 GMT does requirepass only affect slaves or also connecting clients ? 17:58:13 GMT can we install redis cluster in single Debian machine ? 17:58:44 GMT Does Debian 7 doesn't contain the version of redis with cluster support ?? 18:00:06 GMT @here 18:30:04 GMT last1: both