Hacker News new | ask | show | jobs
by forrestthewoods 4612 days ago
"given the switch to 64-bit iOS 7 seems to be causing 20-30% higher memory consumption"

I've not read about this. Can you cite a source?

2 comments

larger pointers mean more ram is taken up by programs, its something that's a given with a transition from a 32bit to a 64bit architecture.
Yeah, pointers are double size, but the majority of RAM for iOS apps is used by images and other resources. These do not grow in size.

Most apps are not using tens of megabytes for pointer based graph-structures etc. or code.

They are however using loads of megabytes for image data, offscreen buffers, etc.

So I doubt that 64-bit changes much.

Anand mentions it in this article.