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
At the moment rate limit keys (in Redis, but this would apply to other shared storage backends as well) include congestion, the limit type name, and the limit id. Eg an IP rate limit key in Redis looks like this:
This means that there's a chance of key name collisions if multiple applications want to use a single Redis instance to store their rate limit counters.
By including an application key in the key name we could guarantee that multiple applications can use the same storage server without the risk of name collision.
The text was updated successfully, but these errors were encountered:
At the moment rate limit keys (in Redis, but this would apply to other shared storage backends as well) include
congestion
, the limit type name, and the limit id. Eg an IP rate limit key in Redis looks like this:This means that there's a chance of key name collisions if multiple applications want to use a single Redis instance to store their rate limit counters.
By including an application key in the key name we could guarantee that multiple applications can use the same storage server without the risk of name collision.
The text was updated successfully, but these errors were encountered: