mirror of https://github.com/panjf2000/ants.git
optimization for pool
This commit is contained in:
parent
5aa4fd3b9d
commit
c4a50a1867
5
ants.go
5
ants.go
|
@ -65,6 +65,7 @@ func Release() {
|
|||
|
||||
// Errors for the Ants API
|
||||
var (
|
||||
ErrPoolSizeInvalid = errors.New("invalid size for pool")
|
||||
ErrPoolClosed = errors.New("this pool has been closed")
|
||||
ErrInvalidPoolSize = errors.New("invalid size for pool")
|
||||
ErrInvalidPoolExpiry = errors.New("invalid expiry for pool")
|
||||
ErrPoolClosed = errors.New("this pool has been closed")
|
||||
)
|
||||
|
|
|
@ -41,8 +41,11 @@ const (
|
|||
ZiB // 1180591620717411303424 (超过了int64的范围)
|
||||
YiB // 1208925819614629174706176
|
||||
)
|
||||
const RunTimes = 1000000
|
||||
const loop = 10
|
||||
const (
|
||||
RunTimes = 1000000
|
||||
Param = 10
|
||||
AntsSize = 100000
|
||||
)
|
||||
|
||||
func demoFunc() error {
|
||||
n := 10
|
||||
|
@ -68,7 +71,7 @@ func BenchmarkGoroutineWithFunc(b *testing.B) {
|
|||
for j := 0; j < RunTimes; j++ {
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
demoPoolFunc(loop)
|
||||
demoPoolFunc(Param)
|
||||
wg.Done()
|
||||
}()
|
||||
}
|
||||
|
@ -78,7 +81,7 @@ func BenchmarkGoroutineWithFunc(b *testing.B) {
|
|||
|
||||
func BenchmarkAntsPoolWithFunc(b *testing.B) {
|
||||
var wg sync.WaitGroup
|
||||
p, _ := ants.NewPoolWithFunc(50000, func(i interface{}) error {
|
||||
p, _ := ants.NewPoolWithFunc(AntsSize, func(i interface{}) error {
|
||||
demoPoolFunc(i)
|
||||
wg.Done()
|
||||
return nil
|
||||
|
@ -88,7 +91,7 @@ func BenchmarkAntsPoolWithFunc(b *testing.B) {
|
|||
for i := 0; i < b.N; i++ {
|
||||
for j := 0; j < RunTimes; j++ {
|
||||
wg.Add(1)
|
||||
p.Serve(loop)
|
||||
p.Serve(Param)
|
||||
}
|
||||
wg.Wait()
|
||||
b.Logf("running goroutines: %d", p.Running())
|
||||
|
@ -98,19 +101,19 @@ func BenchmarkAntsPoolWithFunc(b *testing.B) {
|
|||
func BenchmarkGoroutine(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
for j := 0; j < RunTimes; j++ {
|
||||
go demoPoolFunc(loop)
|
||||
go demoPoolFunc(Param)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func BenchmarkAntsPool(b *testing.B) {
|
||||
p, _ := ants.NewPoolWithFunc(50000, demoPoolFunc)
|
||||
p, _ := ants.NewPoolWithFunc(AntsSize, demoPoolFunc)
|
||||
defer p.Release()
|
||||
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
for j := 0; j < RunTimes; j++ {
|
||||
p.Serve(loop)
|
||||
p.Serve(Param)
|
||||
}
|
||||
// b.Logf("running goroutines: %d", p.Running())
|
||||
}
|
||||
|
|
5
pool.go
5
pool.go
|
@ -95,7 +95,10 @@ func NewPool(size int) (*Pool, error) {
|
|||
// NewTimingPool generates a instance of ants pool with a custom timed task
|
||||
func NewTimingPool(size, expiry int) (*Pool, error) {
|
||||
if size <= 0 {
|
||||
return nil, ErrPoolSizeInvalid
|
||||
return nil, ErrInvalidPoolSize
|
||||
}
|
||||
if expiry <= 0 {
|
||||
return nil, ErrInvalidPoolExpiry
|
||||
}
|
||||
p := &Pool{
|
||||
capacity: int32(size),
|
||||
|
|
|
@ -66,7 +66,6 @@ func (p *PoolWithFunc) monitorAndClear() {
|
|||
heartbeat := time.NewTicker(p.expiryDuration)
|
||||
go func() {
|
||||
for range heartbeat.C {
|
||||
time.Sleep(p.expiryDuration)
|
||||
currentTime := time.Now()
|
||||
p.lock.Lock()
|
||||
idleWorkers := p.workers
|
||||
|
@ -81,7 +80,7 @@ func (p *PoolWithFunc) monitorAndClear() {
|
|||
p.running--
|
||||
}
|
||||
if n > 0 {
|
||||
n += 1
|
||||
n++
|
||||
p.workers = idleWorkers[n:]
|
||||
}
|
||||
p.lock.Unlock()
|
||||
|
@ -97,7 +96,10 @@ func NewPoolWithFunc(size int, f pf) (*PoolWithFunc, error) {
|
|||
// NewTimingPoolWithFunc generates a instance of ants pool with a specific function and a custom timed task
|
||||
func NewTimingPoolWithFunc(size, expiry int, f pf) (*PoolWithFunc, error) {
|
||||
if size <= 0 {
|
||||
return nil, ErrPoolSizeInvalid
|
||||
return nil, ErrInvalidPoolSize
|
||||
}
|
||||
if expiry <= 0 {
|
||||
return nil, ErrInvalidPoolExpiry
|
||||
}
|
||||
p := &PoolWithFunc{
|
||||
capacity: int32(size),
|
||||
|
|
Loading…
Reference in New Issue