mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 18:30:27 -07:00
RHBK v26: Update ispn session usages (KC/RHBK v26 Support #253)
Cf. <https://docs.redhat.com/en/documentation/red_hat_build_of_keycloak/26.0/html-single/upgrading_guide/index#restricting_the_size_of_session_caches>
This commit is contained in:
parent
bf0bd9e1da
commit
0c58ae48ff
1 changed files with 7 additions and 3 deletions
|
@ -18,8 +18,8 @@
|
||||||
|
|
||||||
<infinispan
|
<infinispan
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="urn:infinispan:config:14.0 http://www.infinispan.org/schemas/infinispan-config-14.0.xsd"
|
xsi:schemaLocation="urn:infinispan:config:15.0 http://www.infinispan.org/schemas/infinispan-config-15.0.xsd"
|
||||||
xmlns="urn:infinispan:config:14.0">
|
xmlns="urn:infinispan:config:15.0">
|
||||||
|
|
||||||
{% set stack_expression='' %}
|
{% set stack_expression='' %}
|
||||||
{% if keycloak_quarkus_ha_enabled and keycloak_quarkus_ha_discovery == 'TCPPING' %}
|
{% if keycloak_quarkus_ha_enabled and keycloak_quarkus_ha_discovery == 'TCPPING' %}
|
||||||
|
@ -55,18 +55,22 @@
|
||||||
</local-cache>
|
</local-cache>
|
||||||
<distributed-cache name="sessions" owners="2">
|
<distributed-cache name="sessions" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
|
<memory max-count="10000"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
<distributed-cache name="authenticationSessions" owners="2">
|
<distributed-cache name="authenticationSessions" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
<distributed-cache name="offlineSessions" owners="2">
|
<distributed-cache name="offlineSessions" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
|
<memory max-count="10000"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
<distributed-cache name="clientSessions" owners="2">
|
<distributed-cache name="clientSessions" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
|
<memory max-count="10000"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
<distributed-cache name="offlineClientSessions" owners="2">
|
<distributed-cache name="offlineClientSessions" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
|
<memory max-count="10000"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
<distributed-cache name="loginFailures" owners="2">
|
<distributed-cache name="loginFailures" owners="2">
|
||||||
<expiration lifespan="-1"/>
|
<expiration lifespan="-1"/>
|
||||||
|
@ -98,4 +102,4 @@
|
||||||
<memory max-count="-1"/>
|
<memory max-count="-1"/>
|
||||||
</distributed-cache>
|
</distributed-cache>
|
||||||
</cache-container>
|
</cache-container>
|
||||||
</infinispan>
|
</infinispan>
|
||||||
|
|
Loading…
Add table
Reference in a new issue