| 12345678910111213141516171819202122232425262728293031323334353637383940 | <ehcache updateCheck="false" name="shiroCache">	<diskStore path="java.io.tmpdir/shiro/projects" />	<!-- maxEntriesLocalHeap="2000"   -->	<cache name="passwordRetryCache"             eternal="false"             timeToIdleSeconds="3600"             timeToLiveSeconds="0"             overflowToDisk="false"             statistics="true">      </cache>        <cache name="authorizationCache"             eternal="false"             timeToIdleSeconds="3600"             timeToLiveSeconds="0"             overflowToDisk="false"             statistics="true">      </cache>        <cache name="authenticationCache"             eternal="false"             timeToIdleSeconds="3600"             timeToLiveSeconds="0"             overflowToDisk="false"             statistics="true">      </cache>        <cache name="shiro-activeSessionCache"             eternal="false"             timeToIdleSeconds="3600"             timeToLiveSeconds="0"             overflowToDisk="false"             statistics="true">      </cache>  </ehcache>
 |