golang 應用協程和channel實現高併發

問題:模擬100個ip向server發送請求,每一個ip重複請求1000次,間隔時間不得超過3s。優化 package main import ( "fmt" "sync" "sync/atomic" "time" ) const IP_NUMBER = 100 type ipTestTask struct { handleOk chan struct{} idle bo
相關文章
相關標籤/搜索