您好,我正在使用优先级调度程序Kue https://github.com/Automattic/kue
我需要的是调度程序根据项目名称一次处理一个作业。 所以代码应该看起来类似于
jobs.create(item.project.name); //Adding a job to the queue
jobs.process(item.project.name, 1, function ( job, done ){
//Processing the job here
});
问题是在用户发布帖子请求之前我不知道名字
router.post('/add-to-queue',req,res)
在同一功能中处理和保存不起作用。
非常感谢任何帮助。