tag: performance
articles: 4 · beats: 1
latest: August 12, 2026
---
Performance
4 Crashtech articles on Performance, filed under System Design, published in August 2026. Every piece is full-text HTML with sources, structured data and an authored FAQ.
All 4 sit in the System Design beat. System Design
Optimistic UI: The Illusion of Instant
Apply mutations locally and reconcile in the background, collapsing perceived latency from 150 ms to instant. Rollback, idempotency keys, offline queues.
Copy-on-Write Snapshots
fork() shares parent memory, copying only written pages for non-blocking snapshots. Write-heavy loads can spike memory to 2x under load.
Token Buckets: Bounding Rate Limits at the Edge
Fixed-window counters leak at boundaries. Token buckets refill steadily, absorb bursts, and bound the sustained rate strictly—the algorithm Stripe uses.
Tries: Why Autocomplete Doesn't Scan Every Word
A trie finds all words with a prefix in O(p) time, independent of dictionary size. Radix compression and top-k heaps make autocomplete instant.
Questions we answer about Performance
- What is optimistic UI execution and why is perceived latency different from actual latency?
- How does rollback work when the server rejects an optimistic mutation?
- What is an idempotency key and why does it prevent double-charging or duplicate inserts?
- How do you handle ordering when mutations are queued offline and replayed later?
- When is optimistic UI the wrong call and what should you use instead?
- How does fork() enable non-blocking snapshots?
- What's copy-on-write (CoW) at the page level?
- When does memory spike during BGSAVE?
- Can copy-on-write fail in production?
- How do you work around the memory risk?
Frequently asked questions
What does Crashtech publish about Performance?
4 articles tagged Performance, the most recent published August 12, 2026. All 4 sit in the System Design beat. Each carries numbered sources, an authored FAQ and full structured data.
What questions about Performance does Crashtech answer directly?
10 questions have a dedicated answer page under this tag, including “What is optimistic UI execution and why is perceived latency different from actual latency?”. Each answer is authored prose from the article it belongs to, not a generated summary.
Can AI assistants read Crashtech's Performance coverage?
Yes. Crashtech serves full static HTML to every crawler, allows all major AI user agents in robots.txt, and publishes an llms.txt manifest plus a full-text corpus, so assistants can retrieve and cite these articles directly.