From: Ian Lance Taylor
Date: Tue, 19 Nov 2019 15:42:09 +0000 (-0800)
Subject: doc/go1.14: mention new, more efficient, timers
X-Git-Tag: go1.14beta1~154
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2ac9f1dbe24cc27c6668287aed0b9559097815c6;p=gostls13.git
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
---
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