C Session Cache Configuration File
default-session-cache-config.xml
, to define the caches and services that implement HTTP session management. This file is deployed in the WEB-INF/classes
directory.
Table C-1 describes the default cache-related values used in the default-session-cache-config.xml
file.
Table C-1 Cache-Related Values Used in
default-session-cache-config.xml
Value | Description |
---|---|
|
This local cache is used to store attributes that are not distributed. This can happen under these conditions:
|
|
This local cache is used to store session models that are considered to be local by the configured (if any) |
|
If |
|
This cache is used to store internal configuration and management information for the session management implementation. This information is updated infrequently. |
|
This value is the default clustered cache used to store the session attributes. To
use a different cache, use the |
|
If the |
|
This clustered (non-elastic) cache is used to store the session attributes. This
value can be put to use with the |
|
This clustered (non-elastic) cache is used to store the "overflowing" (split-out
due to size) session attributes. It is used only for the "Split" model and can be
put to use with the |
Table C-2 describes the services-related values used in the default-session-cache-config.xml
file.
Table C-2 Services-Related Values Used in default-session-cache-config.xml
Value | Description |
---|---|
|
This distributed service uses the RAM journal backing map (elastic data) and is used by the following caches:
The |
|
This view cache service. |
|
This invocation service is used by the sticky session optimization feature (if |
|
This distributed service is used by the following caches:
|
Example C-1 illustrates the contents of the default-session-cache-config.xml
file. The cache- and services-related values described in Table C-1 and Table C-2 appear in bold
.
Example C-1 Contents of the
default-session-cache-config.xml
File
<?xml version="1.0"?>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- -->
<!-- Cache configuration descriptor for Coherence*Web -->
<!-- -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
<scope-name>oracle.coherence.web</scope-name>
<caching-scheme-mapping>
<!--
The clustered cache used to store Session management data.
-->
<cache-mapping>
<cache-name>session-management</cache-name>
<scheme-name>view</scheme-name>
</cache-mapping>
<!--
The clustered cache used to store ServletContext attributes.
-->
<cache-mapping>
<cache-name>servletcontext-storage</cache-name>
<scheme-name>view</scheme-name>
</cache-mapping>
<!--
The clustered cache used to store Session attributes.
-->
<cache-mapping>
<cache-name>session-storage</cache-name>
<scheme-name>session-distributed</scheme-name>
</cache-mapping>
<!--
The clustered (non-elastic) cache used to store Session attributes.
-->
<cache-mapping>
<cache-name>session-storage-heap-only</cache-name>
<scheme-name>session-distributed-heap-only</scheme-name>
</cache-mapping>
<!--
The clustered cache used to store the "overflowing" (split-out due to size)
Session attributes. Only used for the "Split" model.
-->
<cache-mapping>
<cache-name>session-overflow</cache-name>
<scheme-name>session-distributed</scheme-name>
</cache-mapping>
<!--
The clustered (non-elastic) cache used to store the "overflowing" (split-out due to size)
Session attributes. Only used for the "Split" model.
-->
<cache-mapping>
<cache-name>session-overflow-heap-only</cache-name>
<scheme-name>session-distributed-heap-only</scheme-name>
</cache-mapping>
<!--
The local cache used to store Sessions that are not yet distributed (if
there is a distribution controller).
-->
<cache-mapping>
<cache-name>local-session-storage</cache-name>
<scheme-name>unlimited-local</scheme-name>
</cache-mapping>
<!--
The local cache used to store Session attributes that are not distributed
(if there is a distribution controller or attributes are allowed to become
local when serialization fails).
-->
<cache-mapping>
<cache-name>local-attribute-storage</cache-name>
<scheme-name>unlimited-local</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<!--
View caching scheme used by the Session management and ServletContext
attribute caches.
-->
<view-scheme>
<scheme-name>view</scheme-name>
<service-name>ViewSessionMisc</service-name>
<back-scheme>
<distributed-scheme>
<scheme-ref>session-distributed-heap-only</scheme-ref>
</distributed-scheme>
</back-scheme>
<reconnect-interval>30s</reconnect-interval>
<autostart>true</autostart>
</view-scheme>
<local-scheme>
<scheme-name>session-front</scheme-name>
<eviction-policy>HYBRID</eviction-policy>
<high-units>1000</high-units>
<low-units>750</low-units>
</local-scheme>
<distributed-scheme>
<scheme-name>session-distributed</scheme-name>
<service-name>DistributedSessions</service-name>
<lease-granularity>member</lease-granularity>
<local-storage system-property="coherence.session.localstorage">false</local-storage>
<partition-count>257</partition-count>
<backup-count>1</backup-count>
<request-timeout>30s</request-timeout>
<backing-map-scheme>
<ramjournal-scheme>
<high-units system-property="coherence.session.highunits"/>
<unit-calculator>BINARY</unit-calculator>
</ramjournal-scheme>
</backing-map-scheme>
<autostart>true</autostart>
</distributed-scheme>
<distributed-scheme>
<scheme-name>session-distributed-heap-only</scheme-name>
<service-name>DistributedSessionsHeapOnly</service-name>
<lease-granularity>member</lease-granularity>
<local-storage system-property="coherence.session.localstorage">false</local-storage>
<partition-count>257</partition-count>
<backup-count>1</backup-count>
<request-timeout>30s</request-timeout>
<backing-map-scheme>
<local-scheme/>
</backing-map-scheme>
<autostart>true</autostart>
</distributed-scheme>
<!--
Local caching scheme definition used by all caches that do not require an
eviction policy.
-->
<local-scheme>
<scheme-name>unlimited-local</scheme-name>
<service-name>LocalSessionCache</service-name>
</local-scheme>
<!--
Clustered invocation service that manages sticky session ownership.
-->
<invocation-scheme>
<service-name>SessionOwnership</service-name>
<request-timeout>30s</request-timeout>
</invocation-scheme>
</caching-schemes>
</cache-config>