Difference between revisions of "Memory Management"
From Suhrid.net Wiki
Jump to navigationJump to searchLine 3: | Line 3: | ||
* Running garbage collection can have an impact on the response time of a time critical thread. | * Running garbage collection can have an impact on the response time of a time critical thread. | ||
* It is necessary to have memory that is not subject to GC. | * It is necessary to have memory that is not subject to GC. | ||
− | * | + | * Provides two alternatives to traditional Java heap memory: |
+ | ** Immortal Memory | ||
+ | ** Scoped Memory | ||
[[Category:RealTimeJava]] | [[Category:RealTimeJava]] |
Revision as of 16:53, 1 December 2011
Intro
- Running garbage collection can have an impact on the response time of a time critical thread.
- It is necessary to have memory that is not subject to GC.
- Provides two alternatives to traditional Java heap memory:
- Immortal Memory
- Scoped Memory