x/website: gc-guide: document performance characteristics of weak pointer implementation #71779
Labels
BugReport
Issues describing a possible bug in the Go implementation.
Documentation
Issues describing a change to documentation.
NeedsFix
The path to resolution is known, but the work has not been done.
Milestone
Go version
go version go1.24.0 darwin/arm64
Output of
go env
in your module/workspace:What did you do?
Run simple benchmark like:
What did you see happen?
The GC cycles takes longer as there are more live weak pointers on the heap.
What did you expect to see?
The whole "
Objects that are only pointed to by weak pointers are not considered reachable
" narrative leads me to believe that the number of live weak pointers has no influence on the GC. After all, the GC mark phase should be able to ignore all weak pointers if they have no impact on reachability.If the mark phase of the GC does, in fact, need to consider weak pointers, I believe this should at least be mentioned in the GoDoc for weak pointers. A warning indicating that the GC may take weak pointers into account would be helpful.
The text was updated successfully, but these errors were encountered: