From: Katie Hockman Date: Tue, 11 Jun 2019 19:12:54 +0000 (-0400) Subject: doc: add release notes for sync X-Git-Tag: go1.13beta1~89 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6a4b1f745d999f9ae6e2c5be38acd46bef13fdcb;p=gostls13.git doc: add release notes for sync Change-Id: I49b09349a632a6b6219c85638d9cb6774c0c210a Reviewed-on: https://go-review.googlesource.com/c/go/+/181721 Reviewed-by: Bryan C. Mills --- 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
sync

- 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.