so whats the latency like with KV or R2 with workers in the same region?
so whats the latency like with KV or R2 with workers in the same region?



var startReq = performance.now();
await env.KV.put(key, req.body, { // or get
});
var getDur = performance.now() - startReq;
if (env.AE)
env.AE.writeDataPoint({
blobs: [],
doubles: [getDur],
indexes: [key]
});
...