wersja go: 1.13.4 W kodzie źródłowym sync / once.go następujące komentarze wspominały o „gorącej ścieżce”:
type Once struct {
// done indicates whether the action has been performed.
// It is first in the struct because it is used in the hot path.
// The hot path is inlined at every call site.
// Placing done first allows more compact instructions on some architectures (amd64/x86),
// and fewer instructions (to calculate offset) on other architectures.
done uint32
m Mutex
}
Moje pytania to:
Co oznacza tutaj „gorąca ścieżka”?
Czy „To pierwsze w strukturze” sprawia, że dostęp do „gorącej ścieżki” jest bardziej wydajny? Dlaczego?