Nice, but it's only for pings. Is there something that does a HTTP request and measure the whole thi
Nice, but it's only for pings. Is there something that does a HTTP request and measure the whole thing?




Workers Paid plan is separate from any other Cloudflare plan (Free, Professional, Business) you may have.



// Only default cache can be purged via API
const cache = caches.default;
await cache.put(`https://fake.host/${userId}`, Response.json(userData, {
headers: {
"cache-tag": "user"
// Other headers
}
}));