Crates.io | deno_kv |
lib.rs | deno_kv |
version | 0.85.0 |
source | src |
created_at | 2023-03-22 22:46:26.534991 |
updated_at | 2024-11-10 04:49:37.661958 |
description | Implementation of the Deno database API |
homepage | |
repository | https://github.com/denoland/deno |
max_upload_size | |
id | 817563 |
size | 75,239 |
This crate provides a key/value store for Deno. For an overview of Deno KV, please read the manual.
Deno KV has a pluggable storage interface that supports multiple backends:
Additional backends can be added by implementing the Database
trait.
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.