Posts in the programming caterory

Other categories: calendar configuration dev diagnostics easter-eggs frontend fullstack hardware internet optimisation programming scripting servers software sysadmin terminal vue web

How to Optimise C# (S1E2): Memory Access: Nested Loops

Continuing on from S1E1 that highlighted issues around memory access stalls, and optimisation of hot and cold data, the same issue can happen with nested loops when we traverse and access data structures larger than the …

How to Optimise C# (S1E1): Memory Access: Hot & Cold Data

Not all memory is equal.

It’s beginner’s mistake to think that all memory access takes an equal amount of time. Many managed languages like to abstract details of memory access away so that the programmer …