Is it possible to set a minimal size of a generation 0 heap in .NET?
I have a folowing sistuation. I have a function that allocates around 20-30 MB of 1KB objects, d
The Generation 0 heap is initially sized to your CPU's cache. This is so that small temporary objects don't even need to be moved to main memory.