From 6e85268b8d2f8fcaa12692e89f15a4f2cfe91107 Mon Sep 17 00:00:00 2001 From: Michael Ikemann Date: Mon, 8 Apr 2024 13:22:36 +0200 Subject: [PATCH] Merge fix --- website/documentation/content/storage_documentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/documentation/content/storage_documentation.py b/website/documentation/content/storage_documentation.py index 30e7cfadd..8bfa796cd 100644 --- a/website/documentation/content/storage_documentation.py +++ b/website/documentation/content/storage_documentation.py @@ -24,7 +24,7 @@ - `app.storage.client`: Also stored server-side in memory, this dictionary is unique to each client connection and can hold arbitrary objects. Data will be discarded when the page is reloaded or the user navigates to another page. - Unlike data stored in `app.storage.tab` which can be persisted on the server even for days, + Unlike data stored in `app.storage.tab` which can be persisted on the server even for days, `app.storage.client` helps caching resource-hungry objects such as a streaming or database connection you need to keep alive for dynamic site updates but would like to discard as soon as the user leaves the page or closes the browser. This storage is only available within [page builder functions](/documentation/page).