DEV Community

Discussion on: I built my own Tweet scheduler which costs less than 1$ per month

Collapse
 
cyco130 profile image
Fatih Aygün

Would using Cloudflare Workers' Cron Triggers (ScheduledEvent) work for this use case? Making it essentially free?

Collapse
 
dineshs91 profile image
Dinesh S

Are Cloudflare workers free? They should be having some sort of cap on their free tier.

Collapse
 
cyco130 profile image
Fatih Aygün

The limits are explained here. Whether your use case will fit in the free plan depends on the volume I guess. 100 000 requests per day and 10 ms of CPU time (excluding IO time) should be plenty though.

Thread Thread
 
dineshs91 profile image
Dinesh S

Sounds good!

Thanks for the suggestion. I am going to try it out.