2018-05-20 18:57:48 +03:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
// Copyright (c) 2018 Andy Pan
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// 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:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// 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 13:57:11 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
2018-05-24 14:27:54 +03:00
|
|
|
"sync/atomic"
|
2018-05-23 06:05:23 +03:00
|
|
|
|
|
|
|
"github.com/panjf2000/ants"
|
2018-05-20 13:57:11 +03:00
|
|
|
)
|
|
|
|
|
2018-05-24 14:27:54 +03:00
|
|
|
var sum int32
|
2018-05-23 06:05:23 +03:00
|
|
|
|
|
|
|
func myFunc(i interface{}) error {
|
2018-05-24 14:27:54 +03:00
|
|
|
n := i.(int)
|
|
|
|
atomic.AddInt32(&sum, int32(n))
|
|
|
|
fmt.Printf("run with %d\n", n)
|
2018-05-23 06:05:23 +03:00
|
|
|
return nil
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
|
|
|
|
2018-05-23 06:05:23 +03:00
|
|
|
// func main() {
|
|
|
|
// runTimes := 10000
|
|
|
|
// var wg sync.WaitGroup
|
|
|
|
// // submit all your tasks to ants pool
|
|
|
|
// for i := 0; i < runTimes; i++ {
|
|
|
|
// wg.Add(1)
|
2018-05-24 18:43:34 +03:00
|
|
|
// ants.Submit(func() {
|
2018-05-23 06:05:23 +03:00
|
|
|
// myFunc()
|
|
|
|
// wg.Done()
|
|
|
|
// })
|
|
|
|
// }
|
|
|
|
// wg.Wait()
|
|
|
|
// fmt.Println("finish all tasks!")
|
|
|
|
// }
|
|
|
|
|
2018-05-20 13:57:11 +03:00
|
|
|
func main() {
|
2018-05-23 06:05:23 +03:00
|
|
|
runTimes := 1000
|
|
|
|
|
|
|
|
// set 100 the size of goroutine pool
|
|
|
|
|
2018-05-20 13:57:11 +03:00
|
|
|
var wg sync.WaitGroup
|
2018-05-24 08:35:57 +03:00
|
|
|
p, _ := ants.NewPoolWithFunc(10, func(i interface{}) error {
|
2018-05-23 06:05:23 +03:00
|
|
|
myFunc(i)
|
|
|
|
wg.Done()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
// submit
|
2018-05-20 13:57:11 +03:00
|
|
|
for i := 0; i < runTimes; i++ {
|
|
|
|
wg.Add(1)
|
2018-05-24 14:27:54 +03:00
|
|
|
p.Serve(i)
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
|
|
|
wg.Wait()
|
2018-05-24 14:27:54 +03:00
|
|
|
//var m int
|
|
|
|
//var i int
|
|
|
|
//for n := range sum {
|
|
|
|
// m += n
|
|
|
|
//}
|
2018-05-24 13:30:58 +03:00
|
|
|
fmt.Printf("running goroutines: %d\n", p.Running())
|
2018-05-24 14:27:54 +03:00
|
|
|
fmt.Printf("finish all tasks, result is %d\n", sum)
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|