mirror of https://github.com/panjf2000/ants.git
23 lines
314 B
Go
23 lines
314 B
Go
package ants_test
|
|
|
|
import (
|
|
"testing"
|
|
"github.com/panjf2000/ants"
|
|
)
|
|
|
|
var size = 1000
|
|
|
|
func BenchmarkPoolGroutine(b *testing.B) {
|
|
p := ants.NewPool(size)
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
p.Push(demoFunc)
|
|
}
|
|
}
|
|
|
|
func BenchmarkGoroutine(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
go demoFunc()
|
|
}
|
|
}
|