1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Fix Object Pool example

This commit is contained in:
Leon Klingele 2017-01-07 19:07:49 +01:00
parent af1dfcd39f
commit a2159501d1
No known key found for this signature in database
GPG key ID: 83AEC0FEBAA5D483

View file

@ -11,13 +11,13 @@ package pool
type Pool chan *Object
func New(total int) *Pool {
p := make(chan *Object, total)
p := make(Pool, total)
for i := 0; i < total; i++ {
p <- new(Object)
}
return p
return &p
}
```
@ -34,7 +34,7 @@ case obj := <-p:
p <- obj
default:
// No more objects left retry later or fail
// No more objects left retry later or fail
return
}
```
@ -45,4 +45,4 @@ default:
expensive than the object maintenance.
- If there are spikes in demand as opposed to a steady demand, the maintenance
overhead might overweigh the benefits of an object pool.
- It has positive effects on performance due to object being initialized beforehand.
- It has positive effects on performance due to objects being initialized beforehand.