https://developers.cloudflare.com/durable-objects/#_top
Cloudflare Docs
Durable Objects provide a powerful API for coordinating multiple clients or users, each with private, transactional and strongly consistent storage attached.








import { KVNameSpace } from '@cloudflare/kv-name-space' but it doesn;t workit doesn;t work@JamieD132 What is the error you're getting and what do you expect to get?

wrangler kv bulk put entries: https://developers.cloudflare.com/workers/wrangler/commands/#kv-bulk-putasync function setKVValueWithTimestamp(key, value, cacheTtl) {
const timestamp = Date.now();
const data = JSON.stringify({ value, timestamp });
await KV_NAMESPACE.put(key, data, { expirationTtl: cacheTtl });
}