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-07-02 09:45:25 +03:00
|
|
|
"time"
|
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
|
|
|
|
2018-12-03 06:23:25 +03:00
|
|
|
func myFunc(i interface{}) {
|
2018-06-15 06:26:37 +03:00
|
|
|
n := i.(int32)
|
|
|
|
atomic.AddInt32(&sum, n)
|
2018-05-24 14:27:54 +03:00
|
|
|
fmt.Printf("run with %d\n", n)
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
|
|
|
|
2018-12-03 06:23:25 +03:00
|
|
|
func demoFunc() {
|
2018-05-26 03:42:10 +03:00
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
fmt.Println("Hello World!")
|
|
|
|
}
|
2018-05-23 06:05:23 +03:00
|
|
|
|
2018-05-20 13:57:11 +03:00
|
|
|
func main() {
|
2018-07-02 09:16:39 +03:00
|
|
|
defer ants.Release()
|
|
|
|
|
2018-05-23 06:05:23 +03:00
|
|
|
runTimes := 1000
|
|
|
|
|
2018-12-06 19:33:43 +03:00
|
|
|
// Use the common pool
|
2018-05-20 13:57:11 +03:00
|
|
|
var wg sync.WaitGroup
|
2018-05-26 03:42:10 +03:00
|
|
|
for i := 0; i < runTimes; i++ {
|
|
|
|
wg.Add(1)
|
2018-12-01 14:26:58 +03:00
|
|
|
ants.Submit(func() {
|
2018-05-26 03:42:10 +03:00
|
|
|
demoFunc()
|
|
|
|
wg.Done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
fmt.Printf("running goroutines: %d\n", ants.Running())
|
|
|
|
fmt.Printf("finish all tasks.\n")
|
|
|
|
|
2018-12-06 19:33:43 +03:00
|
|
|
// Use the pool with a function,
|
|
|
|
// set 10 to the size of goroutine pool and 1 second for expired duration
|
2018-12-01 14:26:58 +03:00
|
|
|
p, _ := ants.NewPoolWithFunc(10, func(i interface{}) {
|
2018-05-23 06:05:23 +03:00
|
|
|
myFunc(i)
|
|
|
|
wg.Done()
|
|
|
|
})
|
2018-07-02 09:16:39 +03:00
|
|
|
defer p.Release()
|
2018-12-06 19:33:43 +03:00
|
|
|
// Submit tasks
|
2018-05-20 13:57:11 +03:00
|
|
|
for i := 0; i < runTimes; i++ {
|
|
|
|
wg.Add(1)
|
2018-06-15 06:26:37 +03:00
|
|
|
p.Serve(int32(i))
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
|
|
|
wg.Wait()
|
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
|
|
|
}
|