
While analyzing nearly 120 million requests, we noticed that one thing was dragging down our performance: parsing user agents for detecting bots and search engines.
For this task, we used the UA Parser library, which is quite widely used. Unfortunately, it is quite outdated, generates a lot of allocations and lowers our performance in its implementation.
1| Method | Mean | Error | StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated |
2|-------------------- |-------------|-----------|-----------|---------|--------|-------|-----------|
3| 'UA Parser' | 3,238.59 us | 27.435 us | 25.663 us | 7.8125 | - | - | 168225 B |
Since the alternatives are not really better, we decided to build our own parser: mycsharp/HttpUserAgentParser
During implementation, we paid special attention to the fact that this component could be part of a hot path of the application and therefore invested a lot in optimized performance. And our implementation lives up to this expectation in comparison!
1| Method | Mean | Error | StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated |
2|-------------------- |-------------|-----------|-----------|---------|--------|-------|-----------|
3| 'UA Parser' | 3,238.59 us | 27.435 us | 25.663 us | 7.8125 | - | - | 168225 B |
4| UserAgentService | 391.11 us | 5.126 us | 4.795 us | 35.1563 | 3.4180 | - | 589664 B |
5| HttpUserAgentParser | 67.07 us | 0.740 us | 0.693 us | - | - | - | 848 B |
As can be seen, we generate minimal allocations, but as the only implementation no GenX load at all!
Besides the implementation itself, we also created a caching component that checks respective browser agent strings for equality and thus very widely used agents only need to be parsed once.
We also provide a Dependency Injection registration for ASP.NET Core directly.
Related articles

Mar 10, 2026 · 15 min read
.NET NuGet Trusted Publishing with GitHub Actions
Publishing NuGet packages has traditionally required one uncomfortable compromise: a long-lived API key had to exist somewhere in the …

Mar 09, 2026 · 7 min read
C# 15 Unions: Unions are finally in .NET
After many years of workarounds, design discussions and library-level substitutes, unions are finally becoming a first-class part of C#. The …

Mar 02, 2026 · 19 min read
Unio: High-Performance Discriminated Unions for C#
C# is a powerful language, but there is one road it has not yet fully paved: native discriminated union types. Developers have been working …
Let's Work Together
Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.

Comments