From 7edbb2dffaee6e9b714a8a128a25991cc7059757 Mon Sep 17 00:00:00 2001 From: Igor Zinkovsky Date: Tue, 5 Sep 2023 11:22:23 -0700 Subject: [PATCH] chore: update kv manual (#729) --- runtime/kv.md | 16 ++++++++-------- runtime/kv/key_space.md | 2 +- runtime/kv/operations.md | 2 +- runtime/kv/secondary_indexes.md | 2 +- runtime/kv/transactions.md | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/runtime/kv.md b/runtime/kv.md index 0f5f02c1..63dbf2d6 100644 --- a/runtime/kv.md +++ b/runtime/kv.md @@ -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. @@ -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 diff --git a/runtime/kv/key_space.md b/runtime/kv/key_space.md index 20de25cf..28983555 100644 --- a/runtime/kv/key_space.md +++ b/runtime/kv/key_space.md @@ -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 diff --git a/runtime/kv/operations.md b/runtime/kv/operations.md index d82b1b16..f7605147 100644 --- a/runtime/kv/operations.md +++ b/runtime/kv/operations.md @@ -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 diff --git a/runtime/kv/secondary_indexes.md b/runtime/kv/secondary_indexes.md index e14b1380..962336e5 100644 --- a/runtime/kv/secondary_indexes.md +++ b/runtime/kv/secondary_indexes.md @@ -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, diff --git a/runtime/kv/transactions.md b/runtime/kv/transactions.md index 57df4fa6..2c6a65c1 100644 --- a/runtime/kv/transactions.md +++ b/runtime/kv/transactions.md @@ -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,