This is pretty neat, I can see this maybe being useful for database cleanup/housekeeping, what other example use cases are there?
Deno Cron
11–20 of 190 posts
Re: Deno Cron
#12Re: Deno Cron
#13Does it work locally?
Re: Deno Cron
#14When using Deno Deploy, which region does a cron job run in? Is there a way to configure it?
Re: Deno Cron
#15Re: Deno Cron
#16This isn't quite that but close.
From my experience there 5 main components for larger scale system.
- Request server
- database
- queue
- background worker
- offline batch jobs
I feel like so far serverless has the first 3 fairly well developed but the last two are still underdeveloped.
But maybe I'm just not aware of other solutions?
Re: Deno Cron
#17Re: Deno Cron
#18Nice, I was just wondering if there was an opportunity for a product similar to vercel for batch jobs. This isn't quite that but close. From my experience there 5 main components for larger scale system. - Request server - database - queue - background worker - offline batch jobs I feel like so far serverless has the first 3 fairly well developed but the last two are still underdeveloped. But maybe I'm just not aware…
Re: Deno Cron
#19Would be really awesome if this could be used to offload long lived jobs from the request.
Defer.run is building this for vercel and it’s really cool.
Re: Deno Cron
#20How long does the job get to run? Would be really awesome if this could be used to offload long lived jobs from the request. Defer.run is building this for vercel and it’s really cool.