For storing some values in NSUserDefaults / keychains is there any advantage of having atomic or non-atomic properties?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The difference between "atomic" and "non-atomic" is that atomic requires that all of the data must be successfully written while "non-atomic" means "write as much as possible" (i.e. not necessarily all of it). So for many things (e.g. small bits of data), there's not much of a practical difference between non-atomic or atomic. But for larger blocks of data, then non-atomic vs. atomic actually makes a difference. Do you need to have the data that's written to be 100% perfect and complete, or can your app handle just some of whatever has been written to default or the keychain? |
|||
|