Normally, if you spawn a background thread or run an NSOperation on an NSOperationQueue you need to create an NSAutoreleasePool for that thread or operation because none exists by default.

Does the same rule apply to a block that is placed within a Grand Central Dispatch queue and will be run on a non-main thread? That is, do you need to create an NSAutoreleasePool within each block you dispatch to anything other than the main queue?

In my limited testing, I don't see the console warnings for autoreleased objects that you normally see with background threads or NSOperations. However, I can't seem to find definitive documentation on this, so I was wondering if someone could point out where this is stated.

link|improve this question

feedback

2 Answers

up vote 45 down vote accepted

Does the same rule apply to a block that is placed within a Grand Central Dispatch queue and will be run on a non-main thread? That is, do you need to create an NSAutoreleasePool within each block you dispatch to anything other than the main queue?

Grand central dispatch will manage an autorelease pool per queue automatically. However, there are no guarantees as to when the pool will be drained; it may be after one block is processed, it may be after hundreds (but probably won't be).

So, if you are only allocating a few objects, don't worry about it. However, if you are allocating any significant number of objects (and since you are targeting a memory constrained environment), then you should be creating and draining pools.

link|improve this answer
2  
+1 is this in the documentation anywhere? – Dave DeLong Nov 10 '10 at 6:43
3  
Not clearly enough. Documentation bug filed (<rdar://problem/8651175>). – bbum Nov 10 '10 at 7:27
1  
Excellent. Thanks for the clarification. – Brad Larson Nov 10 '10 at 13:46
1  
Documentation updated. Woot. – bbum Jul 24 '11 at 17:39
feedback

The documentation for this is here

link|improve this answer
Thanks for finding that; bug fixed! – bbum Jul 24 '11 at 17:41
feedback

Your Answer

 
or
required, but never shown

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