Skip to content

Latest commit

 

History

History

rate_limiter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

rate limiter

使用Golang提供的golang.org/x/time/rate进行并发限制。

URLs

说明

Run

# run
go run main.go 2>&1  | tee 1.log

# check qps
grep "finish task:" 1.log | awk '{print $2}' | sort | uniq -c | sort -r