1 repository
Primitives that ensure a specific block of logic runs exactly once during a program's lifetime.
Distinct from Exactly-Once Processing Semantics: Distinct from Exactly-Once Processing Semantics: focuses on in-process single execution guarantees rather than distributed record processing.
Explore 1 awesome GitHub repository matching data & databases · Single-Execution Guarantees. Refine with filters or upvote what's useful.
This project is a technical reference and a collection of internal analysis notes focused on the Go language runtime and compiler. It provides a detailed breakdown of the language internals, covering memory management, garbage collection, and the execution model of the scheduler. The material distinguishes itself by providing deep dives into low-level system details, including a reference for Go assembly instructions, register usage, and system call interfacing. It specifically analyzes the internal implementation of concurrency primitives, such as the goroutine scheduling mechanism, channel
Details the runtime guarantee that specific initialization functions are executed exactly once.