Skip to content

Commit 4fc8caf

Browse files
docs: fix Session State Hyperlink URL (#1118)
Co-authored-by: aymenkrifa <[email protected]>
1 parent d346656 commit 4fc8caf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/develop/concepts/architecture/caching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Streamlit runs your script from top to bottom at every user interaction or code
1616
1. Long-running functions run again and again, which slows down your app.
1717
2. Objects get recreated again and again, which makes it hard to persist them across reruns or sessions.
1818

19-
But don't worry! Streamlit lets you tackle both issues with its built-in caching mechanism. Caching stores the results of slow function calls, so they only need to run once. This makes your app much faster and helps with persisting objects across reruns. Cached values are available to all users of your app. If you need to save results that should only be accessible within a session, use [Session State](/develop/concepts/architecture/session-stat) instead.
19+
But don't worry! Streamlit lets you tackle both issues with its built-in caching mechanism. Caching stores the results of slow function calls, so they only need to run once. This makes your app much faster and helps with persisting objects across reruns. Cached values are available to all users of your app. If you need to save results that should only be accessible within a session, use [Session State](/develop/concepts/architecture/session-state) instead.
2020

2121
<Collapse title="Table of contents" expanded={true}>
2222

0 commit comments

Comments
 (0)