DEVFYI - Developer Resource - FYI

When to Use the Incremental Low Pause Collector?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

432. When to Use the Incremental Low Pause Collector?

Use the incremental low pause collector when your application can afford to trade longer and more frequent young generation garbage collection pauses for shorter tenured generation pauses. A typical situation is one in which a larger tenured generation is required (lots of long-lived objects), a smaller young generation will suffice (most objects are short-lived and don't survive the young generation collection), and only a single processor is available.

(Continued on next question...)

Other Interview Questions