Is there a way to specify a range and list from KV?
Is it possible to retrieve only those of these that match the content of ["parent", 1~3] ?
3 Replies
The condition of less than or equal to 3 is also acceptable.
You want the list interface. Here's how it might look:
There's also the
getMany
interface to get multiple keys at once. https://deno.land/api@v1.41.3?s=Deno.Kv&unstable=&p=prototype.getMany@cknight
Thank you. Understood