You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to add up (read) a bunch of sorted sets in as short as possible time window so that I could write an estimated total and minimize the time window where the sets could be modified:
This didn't work as it hit a 'Too many connections' error. As this is on RedisCluster, there is a Connection Pool in effect with a limit of 32.
I'm asking this as it struck me that aredis could provide a built in gather function to do this in a max_connections-aware manner.
Is that something that is feasible? or desirable?
The text was updated successfully, but these errors were encountered:
eoghanmurray
changed the title
Best way to issue parallel commands?
gather - best way to issue parallel commands?
Feb 22, 2021
I wanted to add up (read) a bunch of sorted sets in as short as possible time window so that I could write an estimated total and minimize the time window where the sets could be modified:
This didn't work as it hit a 'Too many connections' error. As this is on RedisCluster, there is a Connection Pool in effect with a limit of 32.
I'm asking this as it struck me that aredis could provide a built in
gather
function to do this in a max_connections-aware manner.Is that something that is feasible? or desirable?
The text was updated successfully, but these errors were encountered: