When calling get using a key obtained from the list, null may be returned even if the key exists. Is

When calling get using a key obtained from the list, null may be returned even if the key exists. Is this behavior caused by KV consistency?

const keys = await env.NAMESPACE.list();

Promise.all(keys.map(async (key) => {
  const v = env.NAMESPACE.get(key.name);
  console.log(v);
}))
Was this page helpful?