热搜: fiddler git ip 代理
历史搜索

19. Egg.js教程

游客2024-12-09 12:03:01

在程序开发的后端领域,定时任务是一个经常使用的功能,比如从数据库定时读取数据,存到缓存当中,定时删除日志,定时更新数据库文件。本文我们就学习一下定时任务的写法。

定时任务的编写

定时任务需要按照 Egg 的约定,/app目录下,新建shedule文件夹。然后再shedule文件夹下,新建一个get_time.js文件。设置每 3 秒钟,在控制台输出当前时间戳。

const Subscription = require('egg').Subscription;

class GetTime extends Subscription{
  static get schedule(){
    return {
      interval:'10s',
      type:'worker'
    };
  }

  async subscribe(){
    console.log(Date.now());
  }
};

module.exports =GetTime;

更复杂的定时

我们也可以使用更复杂的cron属性进行定时。cron 属性有 6 个参数。

*    *    *    *    *    *
┬    ┬    ┬    ┬    ┬    ┬
│    │    │    │    │    |
│    │    │    │    │    └ day of week (0 - 7) (0 or 7 is Sun)
│    │    │    │    └───── month (1 - 12)
│    │    │    └────────── day of month (1 - 31)
│    │    └─────────────── hour (0 - 23)
│    └──────────────────── minute (0 - 59)
└───────────────────────── second (0 - 59, optional)

比如我们还是要设置每 3 秒钟,返回时间戳,就可以写成下面的样子。

static get schedule(){
  return {
    cron: '*/3 * * * * *',
    type:'worker'
  };
}

本文主要学习了如何在 Egg 中制作定时任务,定时任务几乎每个项目都会用到,所以一定要学好。

标签:egg.js