What Architecture on workers?
Does anyone have any good articles on architecture guides for someone trying to use only cloudflare services for a saas. Like I’m building a MVP and love keeping it simple for my backend using only workers with durable objects and hono. My backend basically is either saving things to do storage or it’s calling 3rd party api for iot device to perform action which can take 2seconds. I can very quickly reach the execution time limits doing multiple of those so now I realize I hit a bottleneck and after some thought realize that queues were the solution to that bottleneck where I break up each event into separate calls. But now I have a problem because any backend architecture I find online i struggle to relate it to cloudflare. My ultimate question is: is there any material to learn what type of architecture or setup does cloudflare recommend for someone like me a one man team building a saas that is gaining interest at really early stages