Hacker News new | ask | show | jobs
by porridgeraisin 719 days ago
Just do hincrby alone, if it doesn't exist it will automatically become 1
1 comments

You are right. It just should be like so:

Get:

   const likes = (await kv.hget(postTitle, "likes")) || 0
Post:

   const likes = await kv.hincrby(postTitle, "likes", 1);