i'm thinking of moving a python project into julia, but before i make such a commitment, i need to know about julia garbage collection. how does it work?
why i'm asking: my code has a non-vanilla linked list class that provides the functionality to drop elements during iteration. this works fine with CPython, but there's something not quite right about gc in PyPy's JIT compiler which causes a memory leak. can i trust that Julia will not have the same problem as PyPy? or should i just move to C for speed and manual deallocation?
