Tag: BackgroundService
All the articles with the tag "BackgroundService".
-
System.Threading.Channels:.NET 内置的生产者-消费者管道,不需要 RabbitMQ
Published: at 07:16 AM一个上传接口在并发上来后把 CPU 打满、把其他请求拖死。问题不在异步写得不对,而在没有一条带背压的工作管道。这篇文章用 System.Threading.Channels 从零搭出生产者-消费者模式,把并发控制、背压和平滑关停一起讲清楚。
-
IHostedService vs BackgroundService:.NET 10 后台任务选哪个
Published: at 11:21 PMBackgroundService 覆盖 .NET 后台任务 99% 的场景,但有 5 个生产坑会让你在凌晨 3 点接到警报。本文对比两种抽象的核心差异,逐一拆解常见陷阱,并附决策矩阵帮你判断何时该升级到 Hangfire 或 Quartz.NET。