|
|
|
|
|
by sdegutis
4519 days ago
|
|
I like the idea behind this article, but I'm a little skeptical of some of its advice. For instance, I don't think it's a good idea to recommend using Boehm GC as a general solution to avoid memory management. It can't really tell the difference between pointers and pointer-sized integers, which means it usually leaks memory. |
|
Citation needed.
Integers matching valid pointers to allocated objects are rare - only common on 32-bit when running near limits of virtual memory space. Which is a bad idea anyway.
Language runtimes that eventually move off Boehm, such as Mono, usually cite other reasons.