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: src/content/docs/identityserver/ui/server-side-sessions/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ The [`IServerSideSessionStore`](/identityserver/reference/stores/server-side-ses
95
95
An EntityFramework Core implementation is already provided as part of our [operational store](/identityserver/data/ef#operational-store), but you can implement
96
96
the [interface](/identityserver/reference/stores/server-side-sessions/) yourself for other backing implementations.
97
97
98
-
:::caution[Performance when listing sessions]
98
+
:::caution[Prefer `GetSessionsAsync` over `QuerySessionsAsync`]
99
99
When listing sessions, prefer `GetSessionsAsync` over `QuerySessionsAsync`.
100
100
The `QuerySessionsAsync` method performs a full-text search and may be slower to retrieve a list of sessions than `GetSessionsAsync`.
101
101
Use `QuerySessionsAsync` only when more advanced filtering is required for the solution you are building.
0 commit comments