deno/ext/kv
denobot 2c97831fec
1.40.5 (#22423)
Bumped versions for 1.40.5

Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
2024-02-15 10:52:42 +05:30
..
01_db.ts refactor: migrate extensions to virtual ops module (#22135) 2024-02-01 11:19:56 +05:30
Cargo.toml 1.40.5 (#22423) 2024-02-15 10:52:42 +05:30
dynamic.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
interface.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.rs fix(unstable): validate kv list selector (#22265) 2024-02-08 14:56:46 +05:30
README.md chore: update ext/kv to use denokv_* crates (#20986) 2023-10-31 11:13:57 +00:00
remote.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
sqlite.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
time.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00

deno_kv

This crate provides a key/value store for Deno. For an overview of Deno KV, please read the manual.

Storage Backends

Deno KV has a pluggable storage interface that supports multiple backends:

  • SQLite - backed by a local SQLite database. This backend is suitable for development and is the default when running locally. It is implemented in the denokv_sqlite crate.
  • Remote - backed by a remote service that implements the KV Connect protocol, for example Deno Deploy.

Additional backends can be added by implementing the Database trait.

KV Connect

The KV Connect protocol allows the Deno CLI to communicate with a remote KV database. The specification for the protocol, and the protobuf definitions can be found in the denokv repository, under the proto directory.