#Process
4 articles
Application
2025-08-09
Exploring Processes, Goroutines, and Memory in Go
Explore Go virtual address spaces, process isolation, goroutine memory sharing, stack and heap behavior.
#Golang#Memory#Heap#Stack#Process#Thread
Architecture
2025-08-02
About Processing Models of Web Applications
Architect web applications with Event Loop, Thread, and Process models for IO-bound and CPU-bound concurrent workloads.
#Event Loop#Thread#Process
Computer Architecture
2020-08-24
Difference Between Orphan Processes and Zombie Processes
Understand orphan and zombie processes in UNIX, process lifecycle, and system resource management implications.
#UNIX#Process
Operating Systems
2018-06-25
Processes vs Threads: Key Differences Every Developer Should Know
Understand the key differences between processes and threads—memory isolation, context switching costs, and when to use multi-processing vs multi-threading in your code.
#OS#Thread#Process#Stack#Heap