Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-22 | refactor: rename Deno.openKv() to Deno.kv() (#18349) | Ryan Dahl | |
2023-03-22 | fix(ext/kv): don't request permissions for ":memory:" (#18346) | Nayeem Rahman | |
Currently `Deno.openKv(":memory:")` requests read+write permissions for `./:memory:` even though no file is read or written. Also added some guards for special sqlite paths that were unintentionally opted into. | |||
2023-03-22 | feat(ext/kv): key-value store (#18232) | Heyang Zhou | |
This commit adds unstable "Deno.openKv()" API that allows to open a key-value database at a specified path. --------- Co-authored-by: Luca Casonato <hello@lcas.dev> Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com> |