I’ve read the Core Data references on Apple’s site. But I wonder, what they mean with atomic store types? They write something of “they have to be read and written in their entirety”.
Could somebody clarify this, please?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Atomicity refers to the property of an entire operation happening before another operation can interrupt it-i.e. for that thread an “atomic” operation will complete if started. In real life this usually means checking the value of something at the start and end of an operation, and if that value changed apart from what the atomic operation performed re-attempt the operation.