gpt4 book ai didi

ios - 如果我想让任务在后台运行, "dispatch_get_global_queue"队列如何工作?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:28:57 25 4
gpt4 key购买 nike

在选择要在哪个队列上运行 dispatch_async 时,经常会提到 dispatch_get_global_queue。这是一个将任务委托(delegate)给特定线程的特殊后台队列吗?是不是差不多是单例了?

因此,如果我总是为我的 dispatch_async 调用使用该队列,该队列是否会变满并且必须等待事情完成才能开始另一个任务,或者它是否可以将其他任务分配给不同的线程?

我想我有点困惑,因为当我为 NSOperation 选择队列时,我可以使用 [NSOperationQueue mainQueue] 选择主线程的队列>,这似乎是 dispatch_get_main_queue 的同义词,但我的印象是 NSOperation 的后台队列必须是 NSOperationQueue 的单独实例,但 GCD 有后台队列的单例? (dispatch_get_global_queue)

此外 - 愚蠢的问题但想确定 - 如果我将任务放入队列中,队列将分配给 一个 线程,对吗?如果任务足够大,它不会将其拆分为多个线程,对吗?

最佳答案

When selecting which queue to run dispatch_async on, dispatch_get_global_queue is mentioned a lot. Is this one special background queue that delegates tasks to a certain thread?

某个线程?不会。dispatch_get_global_queue 会为您检索具有所请求相对优先级的全局队列。 dispatch_get_global_queue 返回的所有队列都是并发的,并且可以根据系统的判断将工作分派(dispatch)给许多不同的线程。这种机制是一个实现细节,对于作为 API 使用者的您来说是不透明的。

在实践中,并且冒着过于简单化的风险,每个优先级都有一个全局队列,在撰写本文时,根据我的经验,每个优先级都将在任何给定时间将工作分派(dispatch)到0 和 64 线程。

Is it almost a singleton?

绝对不是,但您可以将它们视为单例,其中每个优先级都有一个单例。

So if I use that queue always for my dispatch_async calls, will that queue get full and have to wait for things to finish before another one can start, or can it assign other tasks to different threads?

它可以装满。实际上,如果您正在使一个全局并发队列饱和(即超过 64 个相同优先级的后台任务同时运行),您的设计可能很糟糕。 (有关队列宽度限制的更多详细信息,请参阅 this answer)

I guess I'm a little confused because when I'm choosing the queue for an NSOperation, I can choose the queue for the main thread with [NSOperationQueue mainQueue], which seems synonymous to dispatch_get_main_queue

它们不是严格意义上的同义词。虽然 NSOperationQueue 在底层使用 GCD,但还是有一些重要的区别。例如,在主运行循环的单次传递中,只有一个排队到 +[NSOperationQueue mainQueue] 的操作将被执行,而提交到 dispatch_get_main_queue 的多个 block 可能在单个运行循环过程中执行。这对您来说可能无关紧要,但严格来说,它们不是一回事。

but I was under the impression background queues for NSOperation had to be individually made instances of NSOperationQueue, yet GCD has a singleton for a background queue? (dispatch_get_global_queue)

简而言之,是的。听起来您将 GCD 和 NSOperationQueue 混为一谈。 NSOperationQueue 不仅仅是 GCD 的“简单包装器”,它是它自己的东西。它是在 GCD 之上实现的,这对您来说并不重要。 NSOperationQueue 是一个任务队列,具有明确可设置的宽度,您可以“随意”创建实例。你可以随心所欲地制作它们。在某些时候,NSOperationQueue 的所有实例在执行 NSOperations 时,都从与进程的其余部分(包括 GCD)相同的系统资源池中提取资源,所以是的,那里有一些交互,但它们对您来说是不透明的。

Furthermore - silly question but wanted to make sure - if I put a task in a queue, the queue is assigned to one thread, right? If the task is big enough it won't split it up over multiple threads, will it?

单个任务只能在单个线程上执行。没有什么神奇的方法可以让系统将单一任务“拆分”为子任务。那是你的工作。关于您的具体措辞,队列 不是“分配给一个线程”,任务 是。队列中要执行的下一个任务可能会在完全不同的线程上执行。

关于ios - 如果我想让任务在后台运行, "dispatch_get_global_queue"队列如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21122334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com