Tag: performance
All the articles with the tag "performance".
-
Docker Build Cache: What Invalidates It and How to Fix It
Layer caching, BuildKit cache mounts, and registry-based caching — understanding what makes builds slow and how to make them fast again.
-
Checking Out Only What You Need with git sparse-checkout
How to use git sparse-checkout to work with a subset of a large repository — checking out only specific directories without downloading or materializing the rest.
-
Go & Rust for Cost-Effective Serverless: What the Data Actually Shows
A research-driven look at how engineers are using Go and Rust to build high-performance, low-cost serverless web services on AWS, Cloudflare, and GCP.
-
Off-Main-Thread Architecture: Web Workers for Frontend Decoupling
An investigation into using Web Workers with an event-driven message bus to decouple data fetching from React and Svelte render lifecycles, covering transport mechanisms, request deduplication, and practical trade-offs against existing solutions like TanStack Query.
-
React useMemo for Array Slices: When It Helps and When It Doesn't
A technical analysis of whether Array.slice() operations in React components warrant useMemo optimisation, with performance benchmarks, practical decision criteria, and common anti-patterns to avoid.