diff --git a/doc/go1.13.html b/doc/go1.13.html index 91d2f28094..13980ef539 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -330,11 +330,12 @@ TODO
- TODO: https://golang.org/cl/166960: use lock-free structure for Pool stealing
+ Large sync.Pool no longer increase stop-the-world pause times.
- TODO: https://golang.org/cl/166961: smooth out Pool behavior over GC with a victim cache
+ Pool no longer needs to be completely repopulated after every GC. It now retains some objects across GCs,
+ as opposed to releasing all objects, reducing load spikes for heavy users of Pool.