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