Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
When to Use the Incremental Low Pause Collector?
When to Use the Incremental Low Pause Collector?
✍: Guest
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.
2013-03-28, 2251👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
What metrics will you look at in order to see the project is moving successfully? Most metric sets d...
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...