.NET
.NET is seriously fast!
We rewrite the world's most popular code and show the benchmarks. Real numbers. Real wins. Sub-millisecond proof.
CSV Processing 100M rows
stream-parse · cold start · single thread
Record-breaking wins.
Latest 5 benchmarks.
Fresh runs, real numbers. Lower is better.
Same job. Different worlds.
Parse a 10k-object JSON payload. Watch the gap.
1// .NET 9 — System.Text.Json (source-gen)
2using System.Text.Json;
3
4[JsonSerializable(typeof(Order[]))]
5partial class Ctx : JsonSerializerContext { }
6
7var sw = Stopwatch.StartNew();
8var orders = JsonSerializer.Deserialize(
9 json, Ctx.Default.OrderArray);
10sw.Stop();
11// 1.2 ms • 0 allocations on hot path1# Python 3.13 — json stdlib
2import json, time
3
4t = time.perf_counter()
5orders = json.loads(raw)
6elapsed = (time.perf_counter() - t) * 1000
7
8# 56.4 ms • GC pressure
9# ~47x slower than .NET 9
10# (and that's before model binding)Developers are talking.
Submit a benchmark. Pick apart ours. Move the numbers.
I migrated a Python data pipeline to .NET 9 and it shaved 38 minutes off our nightly job. Source-gen JSON is unreal.
AOT + NativeAOT means I ship a single 6MB binary that boots in 4ms. This site keeps proving what I tell my team daily.
Was a Go diehard. The regex benchmark made me actually try it. Now half our edge services are .NET minimal APIs.
Submitted a Rust vs .NET image convolution PR — got merged in two days. Best community I've contributed to in years.