🚮🎨 Ah, the "art" of garbage collection! Because nothing screams excitement like automatic memory management, amirite? 😴✨ This updated edition promises to make memory management "interesting"—because who wouldn't want a front-row seat to the thrill ride of... memory leaks? 🎢💾
https://gchandbook.org/ #garbagecollection #memorymanagement #automemorymanagement #memoryleaks #techhumor #programming #HackerNews #ngated
The Garbage Collection Handbook

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed)

https://gchandbook.org/

#HackerNews #GarbageCollection #MemoryManagement #Programming #Books #TechLiterature

The Garbage Collection Handbook

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed)

https://gchandbook.org/

#HackerNews #Tech #GarbageCollection

The Garbage Collection Handbook

@ascherbaum

A couple of hundred gigs is very impressive.

My mac actually goes back almost as far
as that as I keep rolling things forward,
mail, src, writings, etc.

I wish I knew what was safer to delete from
the macos. Containers? All Caches? Chrome.
Does anything really care about the mutilated file tree of iTunes?

I can no longer just eliminate that which I
do not recognize as useful.

#macos #garbagecollection

Python 3.14 garbage collection rigamarole - The Consensus

Python 3.14.0 introduced a new incremental garbage collector. But reports of higher memory usage caused the Python team to revert the garbage collector changes in 3.14.5.<br /><br />We investigate how memory management works in Python and workloads that perform best and worst for the incremental garbage collector.

The Medley Interlisp environment has a reference-counting garbace collector that provides better performance with interactive applications. The limitations are that the facility doesn't reclaim circular structures and some other data, and the reference count table is of fixed size.

https://interlisp.org/documentation/IRM.pdf#page=435

#GarbageCollection #interlisp #lisp

1-bit remembered sets

https://iskamag.com/posts/remsets

1-bit remembered sets - Iska's blog

G1 GC Throughput Improvements: 5-15% Performance Gains with Dual Card Tables – Ionut Balosin

Orinoco: young generation garbage collection · V8

This article introduces the parallel Scavenger, one of the latest features of Orinoco, V8’s mostly concurrent and parallel garbage collector.

Garbage Collection Without Unsafe Code

Many people, including myself, have implemented garbage collection (GC)libraries for Rust. Manish Goregaokar wrote up a fantastic survey of thisspace a few y...