I know that NSManagedObjectContext
is not thread safe but I want to execute my fetches and updates in the background. So I have questions on if I can do this.
I have one singleton that accesses the core data stuff so I wanted to create a serial dispatch_queue_t can execute all the requests in serial. Is this okay cause I am not sure if all the requests will be executed in the same thread but there will not be any concurrent operations since it is serial.