Skip to content

Commit

Permalink
docs: fix Session State Hyperlink URL (#1118)
Browse files Browse the repository at this point in the history
Co-authored-by: aymenkrifa <[email protected]>
  • Loading branch information
aymenkrifa and aymenkrifa authored Jul 23, 2024
1 parent d346656 commit 4fc8caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/develop/concepts/architecture/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Streamlit runs your script from top to bottom at every user interaction or code
1. Long-running functions run again and again, which slows down your app.
2. Objects get recreated again and again, which makes it hard to persist them across reruns or sessions.

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.
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.

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

Expand Down

0 comments on commit 4fc8caf

Please sign in to comment.