gpt4 book ai didi

node.js - 在 Node.js 中使用计时器而不是计划的 Cron 作业来计划任务

转载 作者:太空宇宙 更新时间:2023-11-03 22:10:11 25 4
gpt4 key购买 nike

这是我的目标:

5 minutes after the last document update, I want to execute a one-time task

这就是操作流程:

  1. 用户更新文档 - 计时器已启动并从 5 分钟开始倒计时
  2. 如果用户再次更新同一文档,并且之前的计时器(由文档._id 标识)仍在运行,则将该计时器重置回 5 分钟并重复倒计时
  3. 当计时器到时 - 执行一次性任务

我以前没有做过这样的事情,我不知道从哪里开始。

我可以使用 Mongoose 中提供的方法轻松 Hook 文档更改(即保存时,执行 func 来设置或重置计时器)

但是,我不知道如何:

  • 创建一个等待 5 分钟的计时器 - 然后执行任务
  • 使计时器可访问,以便我可以重置计时器
  • 使计时器可访问,以便我可以添加额外的变量,这些变量将在计时器到期时在函数中使用

我调查了 Cron 作业,但它们似乎每天都在同一时间安排任务。

我需要一个延迟任务的计时器,但也需要重置该计时器并向计时器添加额外数据的能力。

任何提示表示赞赏。

最佳答案

这是我设法完成的解决方案。

首先,值得注意的是,我最初的假设是正确的:

Cron jobs are great for repetitive, tasks that are scheduled at the same time everyday. However, for tasks that are created on the fly, and have a countdown element, then cron jobs isn't the right tool.

但是,输入 Node 计划 ( https://www.npmjs.com/package/node-schedule )

Node Schedule is a flexible cron-like and not-cron-like job scheduler for Node.js. It allows you to schedule jobs (arbitrary functions) for execution at specific dates, with optional recurrence rules. It only uses a single timer at any given time (rather than reevaluating upcoming jobs every second/minute).

定时器的使用正是这些即时任务所需要的。

所以我的解决方案如下所示:

var schedule = require('node-schedule'),
email_scheduler = {};

email_scheduler["H1e5nE2GW"] = schedule.scheduleJob(Date.now() + 10000, function(){
console.log('its been a total of 10 seconds since initalization / reset.');
});

var second_attempt = schedule.scheduleJob(Date.now() + 5000, function(){
console.log("5 seconds elapsed from start, time to reset original scheduled job");

email_scheduler["H1e5nE2GW"].cancel();

email_scheduler["H1e5nE2GW"] = schedule.scheduleJob(Date.now() + 10000, function(){
console.log('its been a total of 10 since last one seconds.');
});

schedule.scheduleJob(Date.now() + 5000, function(){
console.log("it's been another 5 seconds since reset");

});
});

我的想法(虽然尚未测试)是我可以通过创建 Node 模块为 email_scheduler 对象创建一个类似单例的实例。像这样:

// node_modules/email-scheduler/index.js

module.exports = {};

这样,我就可以访问 ScheduleJobs 并重置 Node 应用程序的每个文件中的计时器。

关于node.js - 在 Node.js 中使用计时器而不是计划的 Cron 作业来计划任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44584799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com