সংস্করণে যান: 1.13.4 সোর্স কোড সিঙ্ক / একবার.go এ , নিম্নলিখিত মন্তব্যগুলিতে "হট পাথ" উল্লেখ করা হয়েছে:
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
}
আমার প্রশ্নগুলি হ'ল:
"গরম পথ" এর অর্থ এখানে কী?
"কাঠামোর মধ্যে এটি প্রথম" কী "গরম পথ" অ্যাক্সেসকে আরও দক্ষ করে তোলে? কেন?