ants/ants_test.go

73 lines
1.2 KiB
Go
Raw Normal View History

2018-05-19 10:22:14 +03:00
package ants_test
2018-05-19 07:33:29 +03:00
2018-05-19 10:22:14 +03:00
import (
"testing"
"github.com/panjf2000/ants"
"sync"
2018-05-19 15:16:33 +03:00
"runtime"
2018-05-19 10:22:14 +03:00
)
var n = 100000
2018-05-19 10:22:14 +03:00
func demoFunc() {
var n int
for i := 0; i < 1000000; i++ {
n += i
2018-05-19 13:24:36 +03:00
}
2018-05-19 10:22:14 +03:00
}
//func demoFunc() {
// var n int
// for i := 0; i < 10000; i++ {
// n += i
// }
// fmt.Printf("finish task with result:%d\n", n)
//}
2018-05-19 10:22:14 +03:00
func TestDefaultPool(t *testing.T) {
for i := 0; i < n; i++ {
ants.Push(demoFunc)
}
2018-05-19 21:52:39 +03:00
//t.Logf("pool capacity:%d", ants.Cap())
//t.Logf("running workers number:%d", ants.Running())
//t.Logf("free workers number:%d", ants.Free())
2018-05-19 10:22:14 +03:00
ants.Wait()
2018-05-19 13:24:36 +03:00
2018-05-19 15:16:33 +03:00
mem := runtime.MemStats{}
runtime.ReadMemStats(&mem)
t.Logf("memory usage:%d", mem.TotalAlloc/1024)
2018-05-19 10:22:14 +03:00
}
//func TestCustomPool(t *testing.T) {
// p := ants.NewPool(1000)
// for i := 0; i < n; i++ {
// p.Push(demoFunc)
// }
//
// t.Logf("pool capacity:%d", p.Cap())
// t.Logf("running workers number:%d", p.Running())
// t.Logf("free workers number:%d", p.Free())
//
// mem := runtime.MemStats{}
// runtime.ReadMemStats(&mem)
//
//}
func TestNoPool(t *testing.T) {
var wg sync.WaitGroup
2018-05-19 10:22:14 +03:00
for i := 0; i < n; i++ {
wg.Add(1)
go func() {
defer wg.Done()
demoFunc()
}()
2018-05-19 10:22:14 +03:00
}
2018-05-19 15:16:33 +03:00
wg.Wait()
2018-05-19 15:16:33 +03:00
mem := runtime.MemStats{}
runtime.ReadMemStats(&mem)
t.Logf("memory usage:%d", mem.TotalAlloc/1024)
2018-05-19 10:22:14 +03:00
}