手记

Golang指数退避算法

package mainimport (    "fmt"    "time")const MAXSLEEP = 128func main() {    for numsec := 1; numsec <= MAXSLEEP; numsec <<= 1 {        // TODO        if numsec <= MAXSLEEP/2 {            time.Sleep(time.Second * time.Duration(numsec))            fmt.Println("slepp time(s):", numsec)        }    }}

0人推荐
随时随地看视频
慕课网APP