|
|
|
|
|
by astrange
638 days ago
|
|
> Perhaps? Most scenarios that explicitly involve .NET's GC vs Swift's ARC display much better performance of the former By which you mean "less CPU cycles on a desktop machine with plenty of memory"? That's not when ARC is more performant; it's better on smaller devices that are under memory pressure and have swapped out some of your memory. In which case you have to swap it back in to go scan for pointers. And if you're a low-priority daemon then you evict higher priority pages in the process. |
|