I see, thank you for the reply. According to: https://developers.cloudflare.com/workers/learning/ho

I see, thank you for the reply.

According to: https://developers.cloudflare.com/workers/learning/how-kv-works/
Initial reads from a location do not have a cached value. The data must be read from the nearest central data store, resulting in a slower response.


In my case, I write my value to KV, take the uuid I assigned to it and send it back to the recipient - the recipient then sends that uuid directly to the consumer, who reaches out to a workers endpoint that retrieves that uuid from KV
That should be an initial read, right?
My application can't have a situation where someone tries to read the value from KV before it's actually saved the writer request completes
Was this page helpful?