Does anyone know if there are any stats around parse times for workers as they get larger? Just inte
Does anyone know if there are any stats around parse times for workers as they get larger? Just interested is there a tipping point or random stats


curl -s --request PATCH \
--url https://api.cloudflare.com/client/v4/accounts/xxx/workers/scripts/yyy/settings \
--header 'Authorization: Bearer zzz' \
--header 'Content-Type: multipart/form-data' \
--form 'settings={"bindings":[{"id":"1","name":"DB_1","type":"d1"}]}'export default {
async fetch(request: Request, env: Env, ctx:EventContext<Env,any,any>) {
const url = new URL(request.url);
if (url.pathname !== "/interactions") {
return Response.redirect(
"https://github.com/User9684/user-utils",
301
);
}
const verified = await VerifyRequest(request, env);
if (!verified) {
return new Response("erm, no???", {
status: 401,
});
}
const requestBody: Interaction = await request.json();
ctx.waitUntil(await (async () => {
})())
return Response.json({
type: CallbackType.DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
})
},
};