issues
search
jacob-pro
/
actix-extensible-rate-limit
Flexible rate limiting middleware for actix-web
Apache License 2.0
59
stars
11
forks
source link
Version 0.3.0
#4
Closed
jacob-pro
closed
9 months ago
jacob-pro
commented
9 months ago
Two main changes:
Removes
async-trait
crate now that it is supported by Rust itself
Changes Redis backend to use the
BITFIELD
command to store counts, this way we can safely decrement saturating at 0 without a transaction (use unsigned integers).
Two main changes:
async-trait
crate now that it is supported by Rust itselfBITFIELD
command to store counts, this way we can safely decrement saturating at 0 without a transaction (use unsigned integers).