Hacker News new | ask | show | jobs
by davvid 435 days ago
The article didn't mention Python's atomic refcounts. They're very bad for cache usage as they're constantly invalidating cache.
2 comments

The only version of Python that uses atomic reference counting is the very new free threaded version.
Non-atomic refcounts invalidate cache as well, they're just not as expensive.