On Thu, May 26, 2016 at 11:41 AM, Ford Ox <fordfo...@gmail.com> wrote:
> I wonder there will be ever be so fast Garbage Collector, that reference
> counting, manual allocation / freeing and all that c++ stuff will be
> obsolete...

This is the wrong question to ask. As I mentioned already, a tracing
GC is usually much faster (in throughput) than any other GC techniques
that I know of (except not freeing memory). Even the simple GC julia
has outperform the best malloc implementation I can find by a large
margin.

The right GC techniques to use is usually a trade off between
throughput and latency.

Reply via email to