up vote 30 down vote favorite
26
share [g+] share [fb]

I'm using Core Data to locally persist results from a Web Services call. The web service returns the full object model for, let's say, "Cars" - could be about 2000 of them (and I can't make the Web Service return anything less than 1 or ALL cars.

The next time I open my application, I want to refresh the Core Data persisted copy by calling the Web Service for all Cars again, however to prevent duplicates I would need to purge all data in the local cache first.

Is there a quicker way to purge ALL instances of a specific entity in the managed object context (e.g. all entities of type "CAR"), or do I need to query them call, then iterate through the results to delete each, then save?

Ideally I could just say delete all where entity is Blah.

thanks, Adam

link|improve this question
feedback

3 Answers

up vote 77 down vote accepted

Fetch 'em all and delete 'em all:

NSFetchRequest * allCars = [[NSFetchRequest alloc] init];
[allCars setEntity:[NSEntityDescription entityForName:@"Car" inManagedObjectContext:myContext]];
[allCars setIncludesPropertyValues:NO]; //only fetch the managedObjectID

NSError * error = nil;
NSArray * cars = [myContext executeFetchRequest:allCars error:&error];
[allCars release];
//error handling goes here
for (NSManagedObject * car in cars) {
  [myContext deleteObject:car];
}
NSError *saveError = nil;
[myContext save:&saveError];
//more error handling here
link|improve this answer
17  
I would also configure the fetch to only retrieve the NSManagedObjectID to reduce any overhead from loading in the full object structure. – Marcus S. Zarra Sep 5 '09 at 22:30
@Marcus +1 excellent suggestion! – Dave DeLong Sep 5 '09 at 22:53
6  
It's not obvious how to only fetch the NSMangagedObjectID.. use [allCars setIncludesPropertyValues:NO]; (and don't bother hunting around for how to make an NSPropertyDescription for the object ID!) – ohhorob Dec 3 '09 at 0:20
1  
Just a heads up.. the code above wouldn't work for me unless I passed the executeFetchRequest an 'error:&error' too. – Garry Dec 27 '09 at 14:07
1  
sorry for newbie question: do you need to save the context after the end of the for loop? eg [myContext save]; – Steve Dec 14 '10 at 1:48
show 7 more comments
feedback

Why not fold in the data that you receive with the existing cache? Otherwise it's not really 'refreshing', it's 'starting again' and you might as well drop/delete the SQLLite file and start again (assuming you're not persisting other data as well).

link|improve this answer
feedback

This is a similar question to the one here and someone suggested setting up a relationship delete rule so you only have to delete one object. So if you have or can make an entity with a to-many relationship to the cars and set the delete rule to cascade when you delete the higher entity all the cars will be deleted as well. This may save some processing time since you don't have to do the steps involved with loading ALL the cars. In a larger data set this could be absolutely necessary.

link|improve this answer
I just tried this on my current project with about 600 core data objects. When I encapsulated them in another object with cascade it took about 9.1 sec to delete. If I used the method suggested by Dave about it takes about 8.7 sec to delete. Not a notable difference for me. – Andrew Zimmer Jan 28 at 4:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.