Skip to content

Commit

Permalink
Fix unordered list in caching guide
Browse files Browse the repository at this point in the history
Closes keycloak#35006

Signed-off-by: Alexander Schwartz <[email protected]>
  • Loading branch information
ahus1 committed Nov 25, 2024
1 parent 99067d3 commit 12436fd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/guides/server/caching.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ User and client sessions are automatically destroyed whenever the user performs

The session data are stored in the database by default and loaded on-demand to the following caches:

* sessions
* clientSessions
* `sessions`
* `clientSessions`
By relying on a distributable cache, cached user and client sessions are available to any node in the cluster so that users can be redirected
to any node without the need to load session data from the database. However, production-ready deployments should always consider session affinity and favor redirecting users
Expand All @@ -116,8 +116,9 @@ By default, user sessions are stored in the database and loaded on-demand to the
It is possible to configure {project_name} to store user sessions in the cache only and minimize the database utilization.
Since all the sessions in this setup are stored in-memory, there are two side effects related to this:
* Losing sessions on all Keycloak nodes restart
* Increased memory consumption
* Losing sessions on when all {project_name} nodes restart.
* Increased memory consumption.
Follow these steps to enable this setup:
Expand Down

0 comments on commit 12436fd

Please sign in to comment.