deno_kv

Crates.iodeno_kv
lib.rsdeno_kv
version0.68.0
sourcesrc
created_at2023-03-22 22:46:26.534991
updated_at2024-07-12 20:20:58.505625
descriptionImplementation of the Deno database API
homepage
repositoryhttps://github.com/denoland/deno
max_upload_size
id817563
size67,337
(denobot)

documentation

README

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.

Commit count: 11748

cargo fmt