Cookie Consent – Store Data in Cloudflare – Keeping Entries only for 20 Days

I managed to store data from the cookie consent in cloudflare. that works pretty well thanks to your details description!! I discussed data privacy with my lawyer and she told me, to delete entries after some days (approx 20 days). Therefore I need to set up some helper function which does the job.

I talked to ChatGTP which told me to use a TTL. Now I just want to reassure if I modify your provided script in a correct way:

I modified
await CONSENTS.put(t, c);

to

await CONSENTS.put(t, c, { expirationTtl: 1728000 });
(1728000 equals 20 days)

Is that correct? Would you do it in another way? (Setting up a different worker)
Thanks for your support!

Best Tobias

Yes, @Tobias you can setup a separate worker and attach a cron job to run every 20days for your case. This cron job will automatically trigger the worker to run and delete your consents from your KV.

Thank you very much @robert.kibet! Very appreciated I will go for a separate worker.