Expand description
Fixed-window request-count limiting plugin (limit-count).
The featherbit port of Apache APISIX’s limit-count: counts requests per
resolved key within a fixed time window using a shared CounterStore
backend (see crate::ratelimit). Requests that exceed count within
time_window seconds are rejected through the node’s limited port with
the configured status. Unlike the token-bucket rate-limit plugin (smooth
refill), this enforces a hard cap per discrete window, matching APISIX
semantics. A counter-backend failure is a genuine infrastructure failure
and stays on error.
Structs§
- Limit
Count Plugin - Enforces a per-key request count within a fixed time window.