You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/develop/concepts/architecture/caching.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Streamlit runs your script from top to bottom at every user interaction or code
16
16
1. Long-running functions run again and again, which slows down your app.
17
17
2. Objects get recreated again and again, which makes it hard to persist them across reruns or sessions.
18
18
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.
20
20
21
21
<Collapsetitle="Table of contents"expanded={true}>
0 commit comments