Sha256: a2b46c130ee8c6f84c9b54c415b0c254f3414d79dfb395f252bebb9b1cb418c3

Contents?: true

Size: 1.53 KB

Versions: 30

Compression:

Stored size: 1.53 KB

Contents

<?xml version="1.0" encoding="UTF-8"?>

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="../../main/config/ehcache.xsd">

    <!-- Disable for test ehcache.xml. Should go to the same place. -->
    <diskStore path="java.io.tmpdir"/>

    <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
                                     properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, timeToLive=0"/>


    <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
                                     properties="hostName=, port=, socketTimeoutMillis="/>


    <defaultCache
            name="default"
            maxElementsInMemory="10"
            eternal="false"
            timeToIdleSeconds="5"
            timeToLiveSeconds="10"
            overflowToDisk="true"
            />


    <!-- Sample cache named sampleCache1 -->
    <cache name="sampleCache1"
           maxElementsInMemory="10000"
           maxElementsOnDisk="1000"
           eternal="false"
           timeToIdleSeconds="360"
           timeToLiveSeconds="1000"
           overflowToDisk="true">
    </cache>

    <!-- Sample cache named sampleCache2. Is eternal. Is diskPersistent but does not overflow to disk -->
    <cache name="sampleCache2"
           maxElementsInMemory="1000"
           eternal="true"
           overflowToDisk="false"
           diskPersistent="true"
            />
</ehcache>

Version data entries

30 entries across 15 versions & 3 rubygems

Version Path
jruby-ehcache-rails3-1.3.2 test/ehcache.xml
jruby-ehcache-rails3-1.3.2 examples/ehcache.xml
jruby-ehcache-rails2-1.3.2 test/ehcache.xml
jruby-ehcache-rails2-1.3.2 examples/ehcache.xml
jruby-ehcache-1.3.2 test/ehcache.xml
jruby-ehcache-1.3.2 examples/ehcache.xml
jruby-ehcache-rails3-1.3.1 test/ehcache.xml
jruby-ehcache-rails3-1.3.1 examples/ehcache.xml
jruby-ehcache-rails2-1.3.1 test/ehcache.xml
jruby-ehcache-rails2-1.3.1 examples/ehcache.xml
jruby-ehcache-1.3.1 test/ehcache.xml
jruby-ehcache-1.3.1 examples/ehcache.xml
jruby-ehcache-rails3-1.3.0 test/ehcache.xml
jruby-ehcache-rails3-1.3.0 examples/ehcache.xml
jruby-ehcache-rails2-1.3.0 examples/ehcache.xml
jruby-ehcache-rails2-1.3.0 test/ehcache.xml
jruby-ehcache-1.3.0 examples/ehcache.xml
jruby-ehcache-1.3.0 test/ehcache.xml
jruby-ehcache-1.2.1 test/ehcache.xml
jruby-ehcache-1.2.1 examples/ehcache.xml