I need get about 10k hashes from redis server. Since there is no command to get multiple hashes in redis I was iterating through the all keys using db.HashGetAllAsync()
call and then waiting all tasks to complete. Even though it worked I saw a dramatic latency spike on RedisLabs dashboard during these calls.
Is there any ways to get many hashes at the same time? Maybe there is any ConnectionMultiplexer
settings that may help in this situation?