工作线程的队列工作不会产生垃圾

发布于 2025-01-11 20:16:20 字数 371 浏览 0 评论 0原文

我有一个方法,我希望在主线程之外的单独线程上执行。它可能会多次完成并在某个时刻再次启动。当我希望该方法在线程上运行时,我想避免生成任何垃圾。另外,通过繁忙的旋转来保持该方法始终处于活动状态也是不可取的。

当使用 System.Threading.Tasks.Task.Run 时,这将创建一个无法重用的新任务对象,从而生成垃圾。当使用 ThreadPool.QueueUserWorkItem 时,会创建一个 System.Threading.QueueUserWorkItemCallbackDefaultContext 对象,从而产生垃圾。有什么方法可以避免生成垃圾,同时避免在不需要运行时使方法保持活动状态?

通过生成垃圾,我的意思是每次在堆上分配一个对象并丢失对旧对象的引用,因此它变成垃圾。

I have a method that I wish to execute on a separate thread from the main thread. It may complete and be started again at some point many times. I want to avoid generating any garbage when I want the method to run on a thread. Additionally keeping the method alive always by busy spinning is not desirable.

When using System.Threading.Tasks.Task.Run this will create a new Task object that cannot be reused, thus garbage is generated. When using ThreadPool.QueueUserWorkItem a System.Threading.QueueUserWorkItemCallbackDefaultContext object is created, thus garbage is generated. Is there any way to avoid generating garbage while also avoiding keeping the method alive when it is not needed to run?

By generating garbage I mean allocating an object on the heap every time and losing the reference to the old one so it thus becomes garbage.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文