63 lines
2.3 KiB
XML
63 lines
2.3 KiB
XML
|
<?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"
|
||
|
xsi:schemaLocation="urn:infinispan:config:9.4 http://www.infinispan.org/schemas/infinispan-config-9.4.xsd"
|
||
|
xmlns="urn:infinispan:config:9.4">
|
||
|
|
||
|
<cache-container name="keycloak">
|
||
|
<local-cache name="default">
|
||
|
<transaction transaction-manager-lookup="org.infinispan.transaction.lookup.JBossStandaloneJTAManagerLookup"/>
|
||
|
</local-cache>
|
||
|
<local-cache name="realms">
|
||
|
<memory>
|
||
|
<object size="10000"/>
|
||
|
</memory>
|
||
|
</local-cache>
|
||
|
<local-cache name="users">
|
||
|
<memory>
|
||
|
<object size="10000"/>
|
||
|
</memory>
|
||
|
</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">
|
||
|
<memory>
|
||
|
<object size="10000"/>
|
||
|
</memory>
|
||
|
</local-cache>
|
||
|
<local-cache name="keys">
|
||
|
<expiration max-idle="3600000"/>
|
||
|
<memory>
|
||
|
<object size="10000"/>
|
||
|
</memory>
|
||
|
</local-cache>
|
||
|
<local-cache name="actionTokens">
|
||
|
<expiration max-idle="-1" interval="300000"/>
|
||
|
<memory>
|
||
|
<object size="-1"/>
|
||
|
</memory>
|
||
|
</local-cache>
|
||
|
</cache-container>
|
||
|
</infinispan>
|