mirror of https://github.com/panjf2000/ants.git
Merge branch 'develop'
This commit is contained in:
commit
b7c241d8ac
5
pool.go
5
pool.go
|
@ -55,6 +55,7 @@ type Pool struct {
|
|||
|
||||
once sync.Once
|
||||
}
|
||||
|
||||
// clear expired workers periodically.
|
||||
func (p *Pool) periodicallyPurge() {
|
||||
heartbeat := time.NewTicker(p.expiryDuration)
|
||||
|
@ -77,8 +78,12 @@ func (p *Pool) periodicallyPurge() {
|
|||
}
|
||||
n++
|
||||
if n > 0 {
|
||||
if n >= cap(idleWorkers) {
|
||||
p.workers = idleWorkers[:0]
|
||||
} else {
|
||||
p.workers = idleWorkers[n:]
|
||||
}
|
||||
}
|
||||
p.lock.Unlock()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -79,8 +79,12 @@ func (p *PoolWithFunc) periodicallyPurge() {
|
|||
}
|
||||
n++
|
||||
if n > 0 {
|
||||
if n >= cap(idleWorkers) {
|
||||
p.workers = idleWorkers[:0]
|
||||
} else {
|
||||
p.workers = idleWorkers[n:]
|
||||
}
|
||||
}
|
||||
p.lock.Unlock()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue