2019-11-19 16:05:15 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright 2019 Red Hat, Inc. and/or its affiliates
|
|
|
|
~ and other contributors as indicated by the @author tags.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<infinispan
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-09-02 13:29:07 +00:00
|
|
|
xsi:schemaLocation="urn:infinispan:config:11.0 http://www.infinispan.org/schemas/infinispan-config-11.0.xsd"
|
|
|
|
xmlns="urn:infinispan:config:11.0">
|
2019-11-19 16:05:15 +00:00
|
|
|
|
|
|
|
<cache-container name="keycloak">
|
|
|
|
<local-cache name="default">
|
|
|
|
<transaction transaction-manager-lookup="org.infinispan.transaction.lookup.JBossStandaloneJTAManagerLookup"/>
|
|
|
|
</local-cache>
|
|
|
|
<local-cache name="realms">
|
2020-09-02 13:29:07 +00:00
|
|
|
<encoding>
|
|
|
|
<key media-type="application/x-java-object"/>
|
|
|
|
<value media-type="application/x-java-object"/>
|
|
|
|
</encoding>
|
|
|
|
<memory storage="HEAP" max-count="10000"/>
|
2019-11-19 16:05:15 +00:00
|
|
|
</local-cache>
|
|
|
|
<local-cache name="users">
|
2020-09-02 13:29:07 +00:00
|
|
|
<encoding>
|
|
|
|
<key media-type="application/x-java-object"/>
|
|
|
|
<value media-type="application/x-java-object"/>
|
|
|
|
</encoding>
|
|
|
|
<memory storage="HEAP" max-count="10000"/>
|
2019-11-19 16:05:15 +00:00
|
|
|
</local-cache>
|
|
|
|
<local-cache name="sessions"/>
|
|
|
|
<local-cache name="authenticationSessions"/>
|
|
|
|
<local-cache name="offlineSessions"/>
|
|
|
|
<local-cache name="clientSessions"/>
|
|
|
|
<local-cache name="offlineClientSessions"/>
|
|
|
|
<local-cache name="loginFailures"/>
|
|
|
|
<local-cache name="work"/>
|
|
|
|
<local-cache name="authorization">
|
2020-09-02 13:29:07 +00:00
|
|
|
<encoding>
|
|
|
|
<key media-type="application/x-java-object"/>
|
|
|
|
<value media-type="application/x-java-object"/>
|
|
|
|
</encoding>
|
|
|
|
<memory storage="HEAP" max-count="10000"/>
|
2019-11-19 16:05:15 +00:00
|
|
|
</local-cache>
|
|
|
|
<local-cache name="keys">
|
2020-09-02 13:29:07 +00:00
|
|
|
<encoding>
|
|
|
|
<key media-type="application/x-java-object"/>
|
|
|
|
<value media-type="application/x-java-object"/>
|
|
|
|
</encoding>
|
2019-11-19 16:05:15 +00:00
|
|
|
<expiration max-idle="3600000"/>
|
2020-09-02 13:29:07 +00:00
|
|
|
<memory storage="HEAP" max-count="10000"/>
|
2019-11-19 16:05:15 +00:00
|
|
|
</local-cache>
|
|
|
|
<local-cache name="actionTokens">
|
2020-09-02 13:29:07 +00:00
|
|
|
<encoding>
|
|
|
|
<key media-type="application/x-java-object"/>
|
|
|
|
<value media-type="application/x-java-object"/>
|
|
|
|
</encoding>
|
2019-11-19 16:05:15 +00:00
|
|
|
<expiration max-idle="-1" interval="300000"/>
|
2020-09-02 13:29:07 +00:00
|
|
|
<memory storage="HEAP" max-count="-1"/>
|
2019-11-19 16:05:15 +00:00
|
|
|
</local-cache>
|
|
|
|
</cache-container>
|
2020-09-02 13:29:07 +00:00
|
|
|
</infinispan>
|