00:05:33 GMT can someone tell me (maybe this is specific to my sdk) if it's possible to check Exist conditions in the middle of a MULTI? 00:12:53 GMT that's not what redis MULTI is meant for, conditional logic should be in LUA run by an EXEC for example 00:13:34 GMT EVAL, or SCRIPT LOAD + EVALSHA 00:17:46 GMT zpojqwfejwfhiunz: gotchya. thanks. i'll read more about that. 10:02:49 GMT How does one use MIGRATE when the other side uses password? 10:02:53 GMT you dont 10:03:14 GMT So how best to copy the data over? 10:05:35 GMT disable the password auth^^ 14:25:54 GMT lol 15:40:16 GMT Is there any way to pass a table as `bar` to `redis.call("HMSET", foo, bar)`? 15:41:42 GMT or do i need to know what each key name is in advance to perform this type of lua call? 15:48:33 GMT cornfeedhobo: you should be able to unpack bar 15:51:48 GMT that is what i thought. so far i am trying something like `eval 'return redis.call("HMSET", foo, cjson.decode(ARGV[1]))' 0 "{\"id\": 1}"` with no luck 15:52:10 GMT unpack(cjson.decode(ARGV[1])) 15:52:27 GMT oooo unpack is a function. i'll go read about that. thanks! 15:53:14 GMT wait, yeah i saw this when reading the eval page and thought it only applied to structs? 15:53:35 GMT e.g. struct.unpack() 15:54:15 GMT oh this must be a lua concept then? 15:55:07 GMT it is a lua concept