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 cannot find any documents that mention "What is the limit number of operations currently in NSOperationQueue queue?"

Can my queue still work if it has 1000 Facebook-graph-request operations?

Thanks

share|improve this question
Do you mean held on the queue, or executing at the same time? – jrturton Dec 26 '12 at 8:25
Hi jrturton, I mean held on the queue not executing at the same time – Thanh Tran Dec 26 '12 at 8:36

1 Answer

There is no API-enforced limit to the number of operations you can add to a queue, any more than there is a limit to the number of objects you can add to an NSArray.

Any limitations are those imposed by the device, notably the available memory. If you are adding so many operations you run out of memory to hold them, let alone execute them, you're doing it wrong.

share|improve this answer

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.