Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm learning about concurrent programming for iOS. So far I've read about NSOperation/NSOperationQueue and GCD. What are the reasons for using NSOperationQueue over GCD and vice versa?

Sounds like both GCD and NSOperationQueue abstract away the explicit creation of NSThreads from the user. However the relationship between the two approaches isn't clear to me so any feedback to appreciated!

share|improve this question
3  
+1 for good question - curious on the results. So far, I just read that GCD can easily be dispatched across CPU cores, rendering it to be the "new hot shit". – Till Apr 29 '12 at 15:28
1  
Some related discussion can be found in this question: Why should I choose GCD over NSOperation and blocks for high-level applications? – Brad Larson Apr 30 '12 at 1:42

4 Answers

up vote 81 down vote accepted

GCD is a low-level C-based API that enables very simple use of a task-based concurrency model. NSOperation and NSOperationQueue are Objective-C classes that do a similar thing. NSOperation was introduced first, but as of 10.6 and iOS 4, NSOperationQueue and friends are internally implemented using GCD.

In general, you should use the highest level of abstraction that suits your needs. This means that you should usually use NSOperationQueue instead of GCD, unless you need to do something that NSOperationQueue doesn't support.

Note that NSOperationQueue isn't a "dumbed-down" version of GCD; in fact, there are many things that you can do very simply with NSOperationQueue that take a lot of work with pure GCD. (Examples: bandwidth-constrained queues that only run N operations at a time; establishing dependencies between operations. Both very simple with NSOperation, very difficult with GCD.) Apple's done the hard work of leveraging GCD to create a very nice object-friendly API with NSOperation. Take advantage of their work unless you have a reason not to.

Caveat: On the other hand, if you really just need to send off a block, and don't need any of the additional functionality that NSOperationQueue provides, there's nothing wrong with using GCD. Just be sure it's the right tool for the job.

share|improve this answer
Great explanation! And thanks for the links to the docs. – SundayMonday Apr 30 '12 at 0:21

In line with my answer to a related question, I'm going to disagree with BJ and suggest you first look at GCD over NSOperation / NSOperationQueue, unless the latter provides something you need that GCD doesn't.

Before GCD, I used a lot of NSOperations / NSOperationQueues within my applications for managing concurrency. However, since I started using GCD on a regular basis, I've almost entirely replaced NSOperations and NSOperationQueues with blocks and dispatch queues. This has come from how I've used both technologies in practice, and from the profiling I've performed on them.

First, there is a nontrivial amount of overhead when using NSOperations and NSOperationQueues. These are Cocoa objects, and they need to be allocated and deallocated. In an iOS application that I wrote which renders a 3-D scene at 60 FPS, I was using NSOperations to encapsulate each rendered frame. When I profiled this, the creation and teardown of these NSOperations was accounting for a significant portion of the CPU cycles in the running application, and was slowing things down. I replaced these with simple blocks and a GCD serial queue, and that overhead disappeared, leading to noticeably better rendering performance. This wasn't the only place where I noticed overhead from using NSOperations, and I've seen this on both Mac and iOS.

Second, there's an elegance to block-based dispatch code that is hard to match when using NSOperations. It's so incredibly convenient to wrap a few lines of code in a block and dispatch it to be performed on a serial or concurrent queue, where creating a custom NSOperation or NSInvocationOperation to do this requires a lot more supporting code. I know that you can use an NSBlockOperation, but you might as well be dispatching something to GCD then. Wrapping this code in blocks inline with related processing in your application leads in my opinion to better code organization than having separate methods or custom NSOperations which encapsulate these tasks.

NSOperations and NSOperationQueues still have very good uses. GCD has no real concept of dependencies, where NSOperationQueues can set up pretty complex dependency graphs. I use NSOperationQueues for this in a handful of cases.

Overall, while I usually advocate for using the highest level of abstraction that accomplishes the task, this is one case where I argue for the lower-level API of GCD. Among the iOS and Mac developers I've talked with about this, the vast majority choose to use GCD over NSOperations unless they are targeting OS versions without support for it (those before iOS 4.0 and Snow Leopard).

share|improve this answer
3  
I only mildly disagree; I use plain GCD quite a bit. But I think you discount NSBlockOperation too heavily in this answer. All the benefits of NSOperationQueue (dependencies, debugability, etc.) apply to block operations too. – BJ Homer Apr 30 '12 at 4:40
@BJHomer - I think the avoidance of NSBlockOperation is more a matter of personal preference in my case, although I have shied away from NSOperations in general after seeing the overhead from their use drag down a couple of applications. If I'm going to use blocks, I tend to go all-in on GCD, with the rare exception of when I need dependency support. – Brad Larson Apr 30 '12 at 18:08
+1, thanks for this analysis. Apple seems to be advocating both (like WWDC 2012's session on concurrent UI), so this is much appreciated. – orip Jul 24 '12 at 5:36
@Dpk - Please don't suggest edits that do nothing more than insert random highlighting of words. This does not improve the readability of the answer any, and such edits are frowned upon here. – Brad Larson Jan 3 at 16:13
Since you have used GCD pretty extensively I have a specific query about it. I am making a game using Cocos2d and every UI operation needs to be in main queue. Do you think GCD is low enough overhead to allow me to dispatch for each UI update or should I shy away from too many dispatches during background updates? – Volure DarkAngel Mar 25 at 22:10
show 6 more comments

GCD is indeed lower-level than NSOperationQueue, its major advantage is that its implementation is very light-weight and focused on lock-free algorithms and performance.

NSOperationQueue does provide facilities that are not available in GCD, but they come at non-trivial cost, the implementation of NSOperationQueue is complex and heavy-weight, involves a lot of locking, and uses GCD internally only in a very minimal fashion.

If you need the facilities provided by NSOperationQueue by all means use it, but if GCD is sufficient for your needs, I would recommend using it directly for better performance, significantly lower CPU and power cost and more flexibility.

share|improve this answer

I haven't used GCD yet, but have built several apps with NSOperationQueues; my understanding is that GCD uses NSOperations "under the hood", but provides a simpler approach to managing the details.

share|improve this answer
13  
In fact, it's just the opposite. NSOperation uses GCD underneath. Unless you need something that only GCD can provide, it's better to use the higher-level abstraction of NSOperation. – BJ Homer Apr 29 '12 at 16:56
@BJHomer Interesting. Have any links to tutorials/documentation regarding this? – SundayMonday Apr 29 '12 at 17:41
3  
Sure. There's eschatologist.net/blog/?p=232, which was written by Chris Hanson, one of the DevTools guys at Apple. Or there's the NSOperationQueue documentation (developer.apple.com/library/mac/#documentation/Cocoa/Reference/…), which says " In Mac OS X v10.6 and later, operation queues use the libdispatch library (also known as Grand Central Dispatch) to initiate the execution of their operations." – BJ Homer Apr 29 '12 at 20:07
I downvoted because it is opposite as BJ Homer commented. – Adam Smith May 14 at 8:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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