Created
January 31, 2017 22:11
-
-
Save jkantr/bd1a31d7c9f0243a07c0b5849876e442 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CronJob = require('cron').CronJob | |
// run once a day at midnight (0 minute of 0 hour, every day/week/month) | |
new CronJob('0 0 * * *', () => { | |
getAllStudents.clear() | |
}, null, true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment