You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
353 B
Go
23 lines
353 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/tal-tech/go-zero/core/executors"
|
|
)
|
|
|
|
func main() {
|
|
executor := executors.NewBulkExecutor(func(items []interface{}) {
|
|
fmt.Println(len(items))
|
|
}, executors.WithBulkTasks(10))
|
|
for {
|
|
if err := executor.Add(1); err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
|
|
time.Sleep(time.Millisecond * 90)
|
|
}
|
|
}
|