Multithreading in .NET Core

Process: A process is not a physical entity; it is a computer concept (virtual) that represents the collection of all computing resources (CPU, memory, disk, network, etc.) used when a program is running. Thread: Also a computer concept (virtual). It is the smallest execution flow of a process (any operation response requires an execution flow) ...

Posted on Sat, 06 Jun 2026 17:54:26 +0000 by eduard

An Overview of JVM Garbage Collectors

Garbage collectors are concrete implementations of garbage collection algorithms like Mark-Sweep, Mark-Compact, and Copying. The default garbage collector can vary between different Java Development Kit (JDK) versions. There are seven common garbage collectors: Serial, Serial Old, ParNew, Parallel Scavenge, Parallel Old, CMS, and G1. To identif ...

Posted on Mon, 11 May 2026 12:57:55 +0000 by DaveM