摘要: import time class TokenBucket(object): # rate是令牌发放速度,capacity是桶的大小 def __init__(self, rate, capacity): self._rate = rate self._capacity = capacity sel 阅读全文
posted @ 2020-11-03 09:32 烧刘病 阅读(390) 评论(0) 推荐(0) 编辑
回到页首