keycloak-scim/server_installation/topics/cache/disable.adoc
andymunro cb730556a7
KEYCLOAK-15291 Addressing review comments. (#1201)
Co-authored-by: Stian Thorgersen <stianst@gmail.com>
2021-11-10 12:39:43 +01:00

30 lines
621 B
Text

=== Disabling caching
You can disable the realm or user cache.
.Procedure
. Edit the `standalone.xml`, `standalone-ha.xml`, or `domain.xml` file in your distribution.
+
The location of this file depends on your <<_operating-mode, operating mode>>.
Here is a sample config file.
+
[source,xml]
----
<spi name="userCache">
<provider name="default" enabled="true"/>
</spi>
<spi name="realmCache">
<provider name="default" enabled="true"/>
</spi>
----
. Set the `enabled` attribute to false for the cache you want to disable.
. Reboot your server for this change to take effect.