go漏桶算法

go漏桶算法 僞代碼 // 定義漏桶結構 type leakyBucket struct { timestamp time.Time // 當前注水時間戳 (當前請求時間戳) capacity float64 // 桶的容量(接受緩存的請求總量) rate float64// 水流出的速度(處理請求速度) water float64 // 當前水量(當前累計請求數) } //
相關文章
相關標籤/搜索