Skip to content

Process

Medium — good to knowGeneral Dev

ELI5 — The Vibe Check

A process is a full running program with its own isolated chunk of memory. Unlike threads that share space, processes are separate apartments — they don't mess with each other's stuff. Crashing one process doesn't take down the others.

Real Talk

A process is an independent program in execution with its own memory space, file handles, and system resources. The OS manages processes via a scheduler. Inter-process communication (IPC) is needed for processes to share data.

When You'll Hear This

"Run that CPU-heavy task in a separate process." / "The worker process crashed — check the logs."

Made with passive-aggressive love by manoga.digital. Powered by Claude.