Z Garbage Collector: The Next Generation
inside.java
Z Garbage Collector: The Next Generation
1–10 of 126 posts
Re: Z Garbage Collector: The Next Generation
#2Re: Z Garbage Collector: The Next Generation
#3Crazy to me that garbage collection systems are a subject of continual evolution and discussion. You'd think it would be "solved" by now... Or is that just in Java world?
Unless someone comes up with a no pause, no compute power no code fully correct GC?
Re: Z Garbage Collector: The Next Generation
#4Crazy to me that garbage collection systems are a subject of continual evolution and discussion. You'd think it would be "solved" by now... Or is that just in Java world?
Memory management is hard, and in a world where memory sizes keep increasing, new techniques being developed is expected and perfectly normal.
Re: Z Garbage Collector: The Next Generation
#5Crazy to me that garbage collection systems are a subject of continual evolution and discussion. You'd think it would be "solved" by now... Or is that just in Java world?
I'm not sure what "solved" would mean for GC. Can't there always be improvements in maintainability, pause duration, correctness, throughput etc. Many dimensions to continually improve on. Unless someone comes up with a no pause, no compute power no code fully correct GC?
Re: Z Garbage Collector: The Next Generation
#6Re: Z Garbage Collector: The Next Generation
#7Earlier quoted context omitted.
I'm not sure what "solved" would mean for GC. Can't there always be improvements in maintainability, pause duration, correctness, throughput etc. Many dimensions to continually improve on. Unless someone comes up with a no pause, no compute power no code fully correct GC?
Java already has that GC, it's called Epsilon https://blogs.oracle.com/javamagazine/post/epsilon-the-jdks-...
Re: Z Garbage Collector: The Next Generation
#8Crazy to me that garbage collection systems are a subject of continual evolution and discussion. You'd think it would be "solved" by now... Or is that just in Java world?
And so it goes, the bottleneck is always moved.
Re: Z Garbage Collector: The Next Generation
#9Crazy to me that garbage collection systems are a subject of continual evolution and discussion. You'd think it would be "solved" by now... Or is that just in Java world?
As somebody says elsewhere, it's multidimensional issue and a single dimensional garbage collector can't be a brilliant match for everything.
The book "Garbage Collection" by Richard Jones, recently discussed on HN, is something I'd highly recommend you buy and read.