CF worker: KV puts slow -- 400ms
So I have a CF worker that's supposed to filter requests based on their properties and track some state across requests. At the end of the request I want to update the linked state.
However, this update costs me up to 400ms, sometimes even more.
Saved payload is ~1KB and the key is ~500B
Is that expected?
Is there any way to run this update async, i.e. after returning my response to the browser?
2 Replies
you can move it into a waitUntil - https://developers.cloudflare.com/workers/runtime-apis/context/#waituntil
Cloudflare Docs
Context (ctx) · Cloudflare Workers docs
The Context API in Cloudflare Workers, including waitUntil and passThroughOnException.

that's a good idea. Thank you!!