This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
from 3eee70c8fb More skip.installer, remove unless in depends-only target new 5ae9abb066 Refactor TimeBucketCounter to support alternative implementations new 9e1aaa5251 Refactor RateLimiter FastRateLimiter for extension new d16bdb35b6 Add an exact rate limit filter. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/catalina/filters/RateLimitFilter.java | 7 +- .../org/apache/catalina/util/ExactRateLimiter.java | 68 ++++++++ java/org/apache/catalina/util/FastRateLimiter.java | 75 +-------- java/org/apache/catalina/util/RateLimiter.java | 7 +- java/org/apache/catalina/util/RateLimiterBase.java | 155 +++++++++++++++++ .../apache/catalina/util/TimeBucketCounter.java | 185 +++++++-------------- ...cketCounter.java => TimeBucketCounterBase.java} | 174 ++++++++++--------- ...> TestRateLimitFilterWithExactRateLimiter.java} | 88 +++++----- webapps/docs/changelog.xml | 7 + webapps/docs/config/filter.xml | 30 +++- 10 files changed, 450 insertions(+), 346 deletions(-) create mode 100644 java/org/apache/catalina/util/ExactRateLimiter.java create mode 100644 java/org/apache/catalina/util/RateLimiterBase.java copy java/org/apache/catalina/util/{TimeBucketCounter.java => TimeBucketCounterBase.java} (54%) copy test/org/apache/catalina/filters/{TestRateLimitFilter.java => TestRateLimitFilterWithExactRateLimiter.java} (75%) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org