6 ms·
Very cool - congrats on the launch! Is there any ability to set reoccurring functions or anything like a cron job?
by randylubin 10y ago
Very cool - congrats on the launch!
Is there any ability to set reoccurring functions or anything like a cron job?
- jwngr 10y agoNot a built-in way per-se, but you do have a handful of options. You can use a third party scheduling service like https://cron-job.org/ https://cron-job.org/. You could also use something like https://cloud.google.com/solutions/reliable-task-scheduling-compute-engine https://cloud.google.com/solutions/reliable-task-scheduling-... which uses Google App Engine and Cloud Pub/Sub. We actually have a sample that shows just this (HTTPS function using an external cron job service): https://github.com/firebase/functions-samples/tree/master/delete-unused-accounts-cron https://github.com/firebase/functions-samples/tree/master/de...
- randylubin 10y agocool - thanks for the tip!