- 首先添加定时任务(request.Queue= "add_user")队列名不允许有大写字符
- 症状(add_user 队列中始终不会执行状态始终都是已经进入队列)
- 解决方案startup添加 把add_user这个队列添加到执行队列中。
services.AddHangfireServer(options => { options.Queues = new[] { "alpha", "beta", "default", "add_user" }; });
- 网上找了很久都是各种copy怪关键还是没解决问题,随便看下官网文档都不至于
- 解决方案来自https://docs.hangfire.io/en/latest/background-processing/configuring-queues.html