Rate limiting rules
Lyft open-sourced its rate-limiting component [12]. We will peek inside of the component and look at some examples of rate-limiting rules:
In the above example, the system is configured to allow a maximum of 5 marketing messages per day. Here is another example:
This rule shows that clients are not allowed to login more than 5 times in 1 minute. Rules are generally written in configuration files and saved on disk.
Last updated