20:51:12 GMT Allah is doing 20:51:22 GMT sun is not doing Allah is doing 20:51:31 GMT moon is not doing Allah is doing 20:51:40 GMT stars are not doing Allah is doing 20:51:48 GMT planets are not doing Allah is doing 20:51:56 GMT galaxies are not doing Allah is doing 20:52:04 GMT oceans are not doing Allah is doing 20:52:15 GMT mountains are not doing Allah is doing 20:52:25 GMT trees are not doing Allah is doing 20:52:33 GMT mom is not doing Allah is doing 20:52:40 GMT dad is not doing Allah is doing 20:52:48 GMT boss is not doing Allah is doing 20:52:56 GMT job is not doing Allah is doing 20:53:05 GMT dollar is not doing Allah is doing 20:53:13 GMT degree is not doing Allah is doing 20:53:20 GMT medicine is not doing Allah is doing 20:53:28 GMT customers are not doing Allah is doing 20:53:47 GMT you can not get a job without the permission of allah 20:54:04 GMT you can not get married without the permission of allah 21:19:13 GMT Are there issues marked as easy so that people new to the project can ramp up while being able to contribute? 21:21:54 GMT there's certainly an abundance of issues to pick from there 22:46:01 GMT hey good afternoon 22:46:22 GMT where is runID stored. 22:46:26 GMT Partial resynchronization not accepted: Runid mismatch (Client asked for 'b6b43b4d3658302ac1083f3158987c928cf0152d', I'm '83b09f28a54250d2755eaa8d3191c2f7c608276e' 22:46:45 GMT something got out of sync 22:49:03 GMT then it goes onto say: Synchronization with slave succeeded 22:49:21 GMT so ignore this runID mismatch? 22:53:04 GMT my sentinal failover is not working either 22:53:28 GMT s/sentinal/sentinel 22:54:30 GMT all the sentinel logs show is one line. even when master is down. 1512] 07 Jul 15:17:23.587 # +sdown master mymaster 10.53.42.82 6379 22:59:32 GMT sentinels dont see eachother or detect other slave 22:59:39 GMT it seems 22:59:47 GMT master0:name=mymaster,status=sdown,address=10.53.42.82:6379,slaves=0,sentinels=1 23:01:19 GMT there are 2 slaves and 3 sentinels and 1 master 23:22:25 GMT it's my understanding that BITOP operations work on bitmaps, which are actually stored as strings - for example, `BITOP OR destkey srckey1 srckey2` - however, I'd like to do a bitwise OR that includes a string literal - for example, `BITOP OR destkey srckey1 "my-literal-string"` 23:22:55 GMT is there a good way to do this kind of operation with "normal" Redis commands, or should I pop open the escape hatch and go into Lua? 23:24:30 GMT the best I can think of off the top of my head without Lua would be something like `SETNX litkey:my-literal-string "my-literal-string"` `BITOP OR destkey srckey1 litkey:my-literal-string` 23:24:55 GMT but that's not ideal, since I don't *really* need redis to be storing those string literals 23:25:13 GMT (and it's two operations every time)