ehcache3.xml 711 B

12345678910111213141516171819202122
  1. <!-- for ehcache 3.x -->
  2. <config
  3. xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  4. xmlns='http://www.ehcache.org/v3'
  5. xsi:schemaLocation="http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core.xsd">
  6. <!-- Don't remote default cache configuration -->
  7. <cache-template name="default">
  8. <key-type>java.lang.String</key-type>
  9. <value-type>java.io.Serializable</value-type>
  10. <expiry>
  11. <ttl unit="seconds">3600</ttl>
  12. </expiry>
  13. <resources>
  14. <heap>1000</heap>
  15. <offheap unit="MB">100</offheap>
  16. </resources>
  17. </cache-template>
  18. <cache alias="default" uses-template="default"/>
  19. </config>