I have a system that must do massive array operations.
Often I have many arrays with 1 to 2 million elements at same time.
Usually I create the arrays inside a procedure, so, I expect when the array variable goes out of scope, the array becomes available to the GC.
But in the near future, I'll...