串行线程/任务叫什么?
当您有多个执行速度非常快的任务,而不是真正的线程时,您只需将它们扔到某个基于任务的队列中,该队列将串行执行它们,这叫什么。拥有的核心越多,队列的消耗速度就越快。我知道它有一个名字,但我不记得了。
Whats it called when you have multiple task that are very quick to execute but instead of having real threads you just toss them into some task based queue which will execute them serially. The more cores you have the faster the queue can be consumed. I know theres a name for it but i cant remember.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正在考虑串行调度队列?
Are you thinking of a Serial Dispatch Queue?