namespace TakeoutSaaS.ApiGateway.Configuration; /// /// 网关限流参数配置。 /// public class GatewayRateLimitOptions { /// /// 是否开启固定窗口限流。 /// public bool Enabled { get; set; } = true; /// /// 固定窗口内允许的最大请求数。 /// public int PermitLimit { get; set; } = 300; /// /// 固定窗口长度(秒)。 /// public int WindowSeconds { get; set; } = 60; /// /// 排队等待的最大请求数。 /// public int QueueLimit { get; set; } = 100; }