halflife-unified-sdk icon indicating copy to clipboard operation
halflife-unified-sdk copied to clipboard

Consider using alternatives to standard library types

Open SamVanheer opened this issue 9 months ago • 0 comments

Consider using alternatives the C++ standard library types.

The following types are known to have performance issues that can be avoided using replacements:

Type Alternative
unordered_map See this benchmark for a starting point: https://martin.ankerl.com/2022/08/27/hashmap-bench-01/#benchmark-results-table
regex Boost.Regex

Make sure to test changes to ensure correctness.

SamVanheer avatar Oct 05 '23 15:10 SamVanheer