|
|
|
|
|
by rbehrends
3396 days ago
|
|
If I were to run a performance-critical application, I'd definitely tune the GC accordingly. It's why the JVM offers several garbage collectors in the first place, for example. Also, GCed languages aren't prevented from using memory pools, but often they are not part of their common libraries, because there's less need for them. |
|
But you have to tune it for the performance of the whole application (AFAIK), you can't tune it for an individual algorithm like you can with c. It's a one size fits all approach.