Tags
#dotnet
PostgreSQL LIKE Performance: CAST, Concat, and OR Comparison
Comparing 6 different LIKE approaches in a migration from bigint LongColumn to text TextColumn with a 2 million row benchmark: CAST+concat, CAST single, text concat, text single, text OR, and CAST OR.
backend
performance
dotnet
.NET Memory Management 1: Stack, Heap and Strings
What are stack and heap, where do value types and reference types live in memory, why is string a special type, and how does the GC lifecycle work.
dotnet
csharp
performance