Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

Commit

Permalink
chore: update kv manual (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorzi authored Sep 5, 2023
1 parent 524fa48 commit 7edbb2d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions runtime/kv.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Deno KV

> ⚠️ Deno KV is currently **experimental** and **subject to change**. While we do
> our best to ensure data durability, data loss is possible, especially around
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
Since version 1.32, Deno has a built in key-value store that durably persists
data on disk, allowing for data storage and access across service and system
restarts.
Expand All @@ -21,14 +29,6 @@ All writes to the KV store are strongly consistent and immediately durably
persisted. Reads are strongly consistent by default, but alternative consistency
modes are available to enable different performance tradeoffs.

> ⚠️ Deno KV is currently **experimental** and **subject to change**. While we do
> our best to ensure data durability, data loss is possible, especially around
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available in closed beta for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
## Getting started

> ⚠️ Because Deno KV is currently **experimental** and **subject to change**, it
Expand Down
2 changes: 1 addition & 1 deletion runtime/kv/key_space.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available in closed beta for Deno Deploy.
> 🌐 Deno KV is available for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
Deno KV is a key value store. The key space is a flat namespace of
Expand Down
2 changes: 1 addition & 1 deletion runtime/kv/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available in closed beta for Deno Deploy.
> 🌐 Deno KV is available for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
The Deno KV API provides a set of operations that can be performed on the key
Expand Down
2 changes: 1 addition & 1 deletion runtime/kv/secondary_indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available in closed beta for Deno Deploy.
> 🌐 Deno KV is available for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
Key-value stores like Deno KV organize data as collections of key-value pairs,
Expand Down
2 changes: 1 addition & 1 deletion runtime/kv/transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> Deno updates. We recommend that you backup your data regularly and consider
> storing data in a secondary store for the time being.
> 🌐 Deno KV is available in closed beta for Deno Deploy.
> 🌐 Deno KV is available for Deno Deploy.
> [Read the Deno Deploy KV docs](https://deno.com/deploy/docs/kv).
> A database transaction, in the context of a key-value store like Deno KV,
Expand Down

0 comments on commit 7edbb2d

Please sign in to comment.