







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-putimport { KVNameSpace } from '@cloudflare/kv-name-space'wrangler 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 });
}