Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Speed of reading NSUserDefaults vs variables

I have an app and it calls to variables often. And these variables are stored in NSUserDefaults.

I'm wondering where NSUserDefaults is storing? And if I call NSUserDefaults directly instead of using variables.

Which is faster? variables or NSUserDefaults. Because using variables to store NSUserDefaults will be the cause of using more memory.

like image 828
TomSawyer Avatar asked May 24 '16 10:05

TomSawyer


2 Answers

NSUserDefaults persists its data on disk so at some point it must load that data from disk in order to store it in memory. It will need to write it back to disk when you tell it to synchronize.

Once in memory, it will store it in a dictionary-like container (probably NSMutableDictionary).

Reading from both disk is very expensive compared to reading a variable directly and reading from a dictionary is moderately expensive compared to reading a variable.

Reading/writing variables it much quicker by a long way.

like image 60
trojanfoe Avatar answered Oct 21 '22 00:10

trojanfoe


NSUserDefaults has a different use case than variables in your code.

The data is packed into a plist representation and needs to be stored to disk (well, at least when it gets synchronized), or read from disk (or from the cache, or some other implementation detail Apple sees fit). In any case, using the defaults should typically be much slower than using a simple variable. And the bigger the user defaults get, the higher the impact, as it will most probably store/read all of it every time. If it will matter in your use case is a different question that we cannot answer.

Use the approach that suits your needs: NSUserDefault to persist settings between application launches, and variables for normal operation. There's nothing wrong with having the settings cached in a local variable and only persisting changes (maybe not every time something changes).

like image 29
Eiko Avatar answered Oct 21 '22 01:10

Eiko