From 2ac9f1dbe24cc27c6668287aed0b9559097815c6 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 19 Nov 2019 07:42:09 -0800 Subject: [PATCH] doc/go1.14: mention new, more efficient, timers Change-Id: I71fc3016106db733b888f3daccc00b493abe39b2 Reviewed-on: https://go-review.googlesource.com/c/go/+/207840 Reviewed-by: Brad Fitzpatrick --- doc/go1.14.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/go1.14.html b/doc/go1.14.html index ed4e3e2ef9..fd2525149f 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -171,6 +171,16 @@ TODO TODO

+

+ Internal timers, used by + time.After, + time.Tick, + net.Conn.SetDeadline, + and friends, are more efficient, with less lock contention and fewer + context switches. + This is a performance improvement that should not cause any user + visible changes. +

Core library

-- 2.50.0