I recently read the blog article on Cloudflare's optimization techniques for decreasing cf pages lat
I recently read the blog article on Cloudflare's optimization techniques for decreasing cf pages latency (https://blog.cloudflare.com/how-we-decreased-pages-latency/). It's quite insightful, but I have a couple of questions regarding the implementation.
- The article mentions optimizing by hashing the hostname of the deployment, where each "pipeline" corresponds to a worker named after the hashed hostname with a secret. How does this approach work with custom domains? Since custom domains have different hostnames, the hashed values wouldn't match.
- Regarding the "special" asset worker mentioned in the article, does it execute before every request? How does it interact with function workers? Specifically, does it forward function requests via service binding to the function worker?





