Say I have User and File with a to-many relationship called files in my Core Data stack. In my code, I load the user's files into an NSArray and iterate through the array performing various functions on the user's files. I have one user with 7,000 files. I believe it would be good for my code to work on smaller "chunks" of the user's files rather than the whole 7,000 at one time. I know there is a fetchLimit available (and that in SQLLite stores only the amount set by fetchLimit will be retrieved) - so, should I ignore the files relationship and instead do a limited fetch using setFetchLimit? Suggestions would be most welcome, thanks!
If anyone has sample code that achieves what I think I need, that would be even better.