• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Does it have any performance tuning parameters in terms of garbage collection?

 
Ranch Hand
Posts: 38
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does it have any performance tuning parameters in terms of garbage collection?
 
Author
Posts: 53
15
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Nilesh,
The book does not cover anything related to garbage collection. Jdk 9 made two changes to garbage collection:

1. Made Garbage-First(G1) the default garbage collector
2. Deprecated the Concurrent Mark Sweep (CMS) Garbage Collector

You can find little more about them at:
1. http://openjdk.java.net/jeps/248
2. http://openjdk.java.net/jeps/291

IMHO, none of these changes were significant enough for an application developer's perspective to warrant a section or chapter in the book.

Thanks
Kishori
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic