ants/ants_benchmark_test.go

118 lines
2.8 KiB
Go
Raw Normal View History

2018-05-20 18:57:48 +03:00
// MIT License
2018-05-20 16:25:59 +03:00
// Copyright (c) 2018 Andy Pan
2018-05-20 18:57:48 +03:00
2018-05-20 16:25:59 +03:00
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
2018-05-20 18:57:48 +03:00
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
2018-05-20 16:25:59 +03:00
//
2018-05-20 18:57:48 +03:00
// The above copyright notice and this permission notice shall be included in all
2018-05-20 16:25:59 +03:00
// copies or substantial portions of the Software.
//
2018-05-20 18:57:48 +03:00
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
2018-05-20 16:24:54 +03:00
2018-05-19 10:57:04 +03:00
package ants_test
import (
2018-05-19 19:11:51 +03:00
"sync"
2018-05-20 16:28:32 +03:00
"testing"
2018-05-23 06:05:23 +03:00
"time"
2018-05-22 13:00:15 +03:00
"github.com/panjf2000/ants"
2018-05-19 10:57:04 +03:00
)
2018-05-23 06:05:23 +03:00
const (
_ = 1 << (10 * iota)
2018-07-02 09:56:20 +03:00
KiB // 1024
MiB // 1048576
GiB // 1073741824
TiB // 1099511627776 (超过了int32的范围)
PiB // 1125899906842624
EiB // 1152921504606846976
ZiB // 1180591620717411303424 (超过了int64的范围)
YiB // 1208925819614629174706176
2018-05-23 06:05:23 +03:00
)
2018-05-28 14:19:17 +03:00
const RunTimes = 1000000
2018-06-15 06:37:15 +03:00
const loop = 10
2018-05-24 08:35:57 +03:00
func demoFunc() error {
2018-05-27 17:41:55 +03:00
n := 10
time.Sleep(time.Duration(n) * time.Millisecond)
return nil
2018-05-24 08:35:57 +03:00
}
2018-05-22 07:01:00 +03:00
func demoPoolFunc(args interface{}) error {
2018-06-15 06:37:15 +03:00
//m := args.(int)
//var n int
//for i := 0; i < m; i++ {
// n += i
//}
//return nil
2018-07-02 09:56:20 +03:00
n := args.(int)
time.Sleep(time.Duration(n) * time.Millisecond)
return nil
2018-05-22 07:01:00 +03:00
}
2018-05-20 06:51:14 +03:00
2018-05-24 08:35:57 +03:00
func BenchmarkGoroutineWithFunc(b *testing.B) {
2018-06-07 09:12:47 +03:00
var wg sync.WaitGroup
2018-05-23 11:43:05 +03:00
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
wg.Add(1)
go func() {
2018-05-24 08:35:57 +03:00
demoPoolFunc(loop)
2018-05-23 11:43:05 +03:00
wg.Done()
}()
}
wg.Wait()
}
}
2018-05-24 08:35:57 +03:00
func BenchmarkAntsPoolWithFunc(b *testing.B) {
2018-06-07 09:12:47 +03:00
var wg sync.WaitGroup
p, _ := ants.NewPoolWithFunc(50000, func(i interface{}) error {
demoPoolFunc(i)
wg.Done()
return nil
})
2018-07-02 09:39:31 +03:00
defer p.Release()
2018-07-02 09:35:02 +03:00
2018-05-23 11:43:05 +03:00
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
wg.Add(1)
2018-05-24 08:35:57 +03:00
p.Serve(loop)
2018-05-23 11:43:05 +03:00
}
wg.Wait()
2018-05-24 13:30:58 +03:00
b.Logf("running goroutines: %d", p.Running())
2018-05-23 11:43:05 +03:00
}
}
2018-05-24 08:35:57 +03:00
func BenchmarkGoroutine(b *testing.B) {
2018-05-20 06:51:14 +03:00
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
2018-05-27 17:41:55 +03:00
go demoPoolFunc(loop)
2018-05-20 06:51:14 +03:00
}
}
}
2018-05-19 19:11:51 +03:00
2018-05-24 08:35:57 +03:00
func BenchmarkAntsPool(b *testing.B) {
2018-05-27 17:41:55 +03:00
p, _ := ants.NewPoolWithFunc(50000, demoPoolFunc)
2018-07-02 09:39:31 +03:00
defer p.Release()
2018-07-02 09:26:17 +03:00
2018-05-27 17:41:55 +03:00
b.ResetTimer()
2018-05-19 10:57:04 +03:00
for i := 0; i < b.N; i++ {
2018-05-19 19:11:51 +03:00
for j := 0; j < RunTimes; j++ {
2018-05-27 17:41:55 +03:00
p.Serve(loop)
2018-05-19 19:11:51 +03:00
}
2018-05-27 17:41:55 +03:00
// b.Logf("running goroutines: %d", p.Running())
2018-05-19 10:57:04 +03:00
}
}