05:14:16 GMT Are DEL commands in redis blocking? 10:00:07 GMT SirFunk_: blocking in the sense that they will first delete the key, then return a response, yes 10:00:31 GMT there's UNLINK for asynchronous removal in 4.0: https://redis.io/commands/unlink 18:42:59 GMT how do I create a human-readable backup of a redis .rdp file? 19:07:35 GMT kulelu88: there's no builtin mechanism for that 19:08:02 GMT alright, I'll just carry on with the regular .rdp . thanks minimalism 19:08:05 GMT minus: 22:45:33 GMT badboy_: yeah, were stuck on whaveter AWS Elasticache supports, 2.8 or something. Does it seam probible that a client deleting 2000+ keys one at a time, could cause other clients to time out when doing reads? 22:48:02 GMT yes 22:48:23 GMT if those are huge keys 22:48:43 GMT it also has a slight advantage over other clients by already being connected and firing 2000+ commands 22:53:54 GMT ok, I think i've fixed the code a bit to not delete as many keys (it's cache invalidation and we were looping over a bunch of related objects and deleting the same key multiple times) 22:54:22 GMT I also am havind it batch into delete calls with < 1000 keys per delete call. Hopefully that will help a little 22:54:53 GMT Last busy-season we were using memcached for cache and didn't see problems like this. I'm guessing it blocks less on deletes or something 22:58:02 GMT how about setting expiry on the keys instead of deleting them directly?