Default value of maxConcurrentOperationCount for NSOperationQueue

橙三吉。 提交于 2019-12-17 16:32:13

问题


As the title suggests, what is the default value of the maxConcurrentOperationCount for NSOperationQueue?

Is it set to a value of 1?


回答1:


From the documentation,

The maximum number of concurrent operations set explicitly on the receiver using the setMaxConcurrentOperationCount: method. If no value has been explicitly set, this method returns NSOperationQueueDefaultMaxConcurrentOperationCount by default.

So it is NSOperationQueueDefaultMaxConcurrentOperationCount. If this is set, it will choose an appropriate value based on the number of available processors and other relevant factors.

This is how it is defined:

enum {
  NSOperationQueueDefaultMaxConcurrentOperationCount = -1
};

NSOperationQueueDefaultMaxConcurrentOperationCount: The default maximum number of operations is determined dynamically by the NSOperationQueue object based on current system conditions.




回答2:


In one of my apps, I add about 35k instances of NSOperation to an NSOperationQueue at once. If I set maxConcurrentOperationCount to 64, I gain about 20x of performance compared to the default value. The CPU load rises from ~120% to 400% which seems to indicate that the default value is so high that the CPU is mostly busy working on the op queue overhead.

Conclusion: if you have many short lived NSOperation it might be worth to play with the maxConcurrentOperationCount.



来源:https://stackoverflow.com/questions/14995801/default-value-of-maxconcurrentoperationcount-for-nsoperationqueue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!