Caching for Workers
Hi, I set up a custom and simple worker to allow access for public files but deny access for user uploaded files.
But for every time a request is made, a worker runs. I'm trying to cache the file for 1 hour to avoid the invocation but it doesn't seems to work. Enabling public access via a custom domain isn't an option because I don't want user uploaded to be accessed.
Thanks 🙂
4 Replies
Workers run before cache
So while you can fetch from cache in the Worker, the Worker will still be invoked.
Is there any work around for this instead? Like a custom cache rule or magic header?
No, Workers will always run before cache.
I'd probably recommend splitting out your public stuff to your non-public stuff and enabling public access on the public stuff.
Or you can pay for the invocations, Workers is cheap luckily so it wouldn't cost much (if anything depending on the traffic)
Got it, thanks 😄
10 million included in the plan is more than enough and managing 2 different buckets and changing a lot of code is not something I'm willing to do right now