14:17:06 GMT Hey guys , I am doing poc over aerospike and redis , but i do not see much difference in performance . have any body has done benchmark test ? 17:56:46 GMT I'm using node and redis. I want to have a separate database for each node project that I have on my server. Should I run redis multiple times depending on the number of active projects that I have or is there a way to run only one redis that it saves the database on different directories? Thank you 17:57:37 GMT dannysantos: running separate instances of redis is your only option 17:58:31 GMT thank you minus 19:30:29 GMT With Redis Sentinel, is is possible to weight which node will be promoted in a failover? We run Redis in containers and may run multiple Redis instances on a host. It would be nice to weight a host down if that host already has another master instance on it. 19:31:26 GMT In looking over the docs it doesn't look like weighting is supported, but it would be nice if it is. 19:31:41 GMT CVTJNII__: there's slave-priority 19:32:46 GMT Cool, that's what I'm looking for 19:32:56 GMT I must have been too focused on the word weight, haha. Thanks! 21:20:03 GMT so, is there an easy way to sweep newly added keys into a set or figure out at creation time that they're new? 21:20:38 GMT maybe via lua? 21:23:11 GMT ember3: you can listen to changes via keyspace notifications or the monitor command 21:25:28 GMT notifications sounds promising. I'm using this as basically a bloom filter that needs to dedup and harvest new keys 21:28:28 GMT hmm 21:28:34 GMT sounds pretty limited though