Who would usually need this book?
The Garbage Collection Handbook, 2nd Edition
21–30 of 174 posts
Re: The Garbage Collection Handbook, 2nd Edition
#2220 years ago in the programming languages lesson at the university we started learning about OOP using Java and Ada as examples. When the professor started describing Java, a fellow student interrupted him to inform the class that "Java has garbage collection" (and boast of his special knowledge). After that incident his nickname was "the garbage collector"!
Re: The Garbage Collection Handbook, 2nd Edition
#23Re: The Garbage Collection Handbook, 2nd Edition
#24Re: The Garbage Collection Handbook, 2nd Edition
#25(To be clear, I'm referring to the very first version, I haven't read the subsequent versions but given the quality of the first I'd be very surprised if they were any less good).
Edit: https://www.cs.kent.ac.uk/people/staff/rej/ - a jumpoff page for his stuff.
Edit2: https://www.cs.kent.ac.uk/people/staff/rej/gcbib/ - "[This] online bibliographic database includes nearly 3,000 garbage collection-related publications. It contains abstracts for some entries and URLs or DOIs for most of the electronically available ones, and is continually being updated. The database can be searched online or downloaded as BibTeX, PostScript, or PDF." Welcome to the ultimate rabbit hole I guess.
Re: The Garbage Collection Handbook, 2nd Edition
#26Bizarre that you can't preorder it yet, you have to wait until June, just to preorder.
Re: The Garbage Collection Handbook, 2nd Edition
#2720 years ago in the programming languages lesson at the university we started learning about OOP using Java and Ada as examples. When the professor started describing Java, a fellow student interrupted him to inform the class that "Java has garbage collection" (and boast of his special knowledge). After that incident his nickname was "the garbage collector"!
Coincidentally, Ada optionally supports garbage collection in its specifications but it's up to the runtime to implement it.
https://en.wikibooks.org/wiki/Ada_Programming/Pragmas/Contro...
Re: The Garbage Collection Handbook, 2nd Edition
#28I tweaked it to work on amd64 and started adding register scanning based on what eatonphil's discord people told me to do.
https://github.com/samsquire/garbage-collector
It's not fit for any purpose but more of a learning exercise.
Re: The Garbage Collection Handbook, 2nd Edition
#29Earlier quoted context omitted.
Rust also uses reference counting, probably the worst sort of garbage collection.
Tracing is the worst in terms of performance
Re: The Garbage Collection Handbook, 2nd Edition
#30Rust has left the building