|
|
|
|
|
by barrkel
2549 days ago
|
|
How much CPU GC takes for any given GC implementation is largely down to the design of the application, its data structures and allocation graph. Request / response servers which keep caches and other allocations prone to middle age death out of the GC heap are consistent with the generational hypothesis and ought to spend no more than a few (low single digit) percent in GC with a generational collector. |
|