I\'m new to redis so I\'m doing something wrong, I\'m sure:
I\'ve stored roughly 16,000 key/values in Azure Redis.
I used the following to write the keys/va
server.Keys automatically selects between KEYS and the preferred SCAN based on server version. I suspect what is happening is that you are thus using SCAN with a too-small page-size. There is an optional parameter for page size. Try specifying something considerably larger than the default - hundreds, thousands, etc. If not specified, the page-size uses the Redis SCAN default of 10, which could cause a lot of round-trips to be required.