Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. What is the key point of the paper? (If it is the survey, what are the key techniques it presents?) *
  2.  
  3. The paper introduces the G1 Garbage Collector, a GC which designates its heap regions as ether young or non-young (generational GC), trying to take advantage of the fact that newly allocated objects are more likely to be the target of pointer modifications and also the fact that newly allocated objects are more likely to become garbage than older objects. G1 also uses concurrent marking, since G1 is designed for multiprocessor systems with large memory which increases the need to reduce interruptions.In addition, G1 tries to achieve a soft real-time goal in its attempt to achieve better throughput and space usage.
  4.  
  5.  
  6. What is the key point of the paper? (If it is the survey, what are the key techniques it presents?) *
  7.  
  8. The paper introduces the G1 Garbage Collector, a GC which designates its heap regions as ether young or non-young (generational GC), trying to take advantage of the fact that newly allocated objects are more likely to be the target of pointer modifications and also the fact that newly allocated objects are more likely to become garbage than older objects. G1 also uses concurrent marking, since G1 is designed for multiprocessor systems with large memory which increases the need to reduce interruptions.In addition, G1 tries to achieve a soft real-time goal in its attempt to achieve better throughput and space usage.
  9.  
  10.  
  11. Do you have any ideas on how to improve the presented idea/technique?
  12.  
  13. As i mentioned above i would like further explanation in the introductory terms plus some visual representation of the way that the memory is used by G1.In addition, i am not quite sure if fully understood the way that G1 deals with the humongous objects.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement