| ▲ | kentonv an hour ago | |
I wasn't personally involved in pricing here so I can't really say exactly why it is the way it is. However, I'd note that, in terms of our costs, it's often cheaper for us to run your Worker than to serve from cache. Consider that Workers run locally in whatever edge location the request landed in. We are not saving any bandwidth costs by putting the cache in front of Workers rather than behind, and we've built an architecture such that running a Worker is extremely cheap, almost free. In that light, making cache hits free would basically be giving away money. To be honest, that is another reason why implementing cache in front of Workers has been held back so long. I think the team finally decided that the only way we can deliver it without giving away too much money is to charge full price for the requests. Workers pricing is already incredibly generous, and we do need to run a business at the end of the day. (Of course, a cache hit still saves you the CPU pricing. CPU time pricing more directly translates to costs for us, so that makes sense.) I admit the side effect on static assets is a little weird. But no other provider offers unlimited free static asset serving to start with -- so it's only weird relative to our own unreasonable standards. :) I think the thought here is that if you need caching in front of Workers, that implies you are doing complex work in Workers and getting a lot of value out of them. So a bit of "price segmentation" kicks in here. That said, you can work around it by serving static assets from another hostname, etc. | ||
| ▲ | drdexebtjl 30 minutes ago | parent [-] | |
No objection towards charging for cache hits, when the worker would have ran. That (except in worker-to-worker invocations) is always a strict upgrade, when it comes to pricing. Worker-to-worker invocations also now participate in the cache, so despite the pricing increase, at least we’re getting some added value. But for static assets in particular, I don’t see what value the cache is adding, so it feels like pure price segmentation. Or, to put it another way, it makes no sense to use the Workers Static Assets feature now instead of just having the worker read the file from disk and respond with appropriate cache headers to cache indefinitely, since it cost approximately the same to us (per request pricing), but is likely more expensive to you. | ||