From 81f04e9a765f4a00cfad86a48aac59abe7dd89a8 Mon Sep 17 00:00:00 2001 From: "Jennifer K. Tran" <38402540+jennifertrin@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:57:37 -0800 Subject: [PATCH] docs: add StableTrie as an option for stable memory storage based on Regions (#4709) Co-authored-by: Jessie Mongeon <133128541+jessiemongeon1@users.noreply.github.com> Co-authored-by: Gabor Greif --- doc/md/stable-memory/stablememory.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/md/stable-memory/stablememory.md b/doc/md/stable-memory/stablememory.md index fb2716bee12..5c0e84d47d3 100644 --- a/doc/md/stable-memory/stablememory.md +++ b/doc/md/stable-memory/stablememory.md @@ -22,6 +22,8 @@ New applications should use the `Region` library: it offers additional isolation - [`memory-hashtable`](https://mops.one/memory-hashtable): A library for storing, updating, deleting, and retrieving a single blob-value per key. +- [`StableTrie`](https://mops.one/stable-trie): A key-value map data structure that has its main data living permanently in stable memory using Regions. + ## Samples - [motoko-bucket](https://github.com/PrimLabs/Bucket): A key value database library that uses stable memory.