jdaugherty commented on issue #15531:
URL: https://github.com/apache/grails-core/issues/15531#issuecomment-4151005872
My `grails-ehcache.xml` looks something like this:
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:jsr107='http://www.ehcache.org/v3/jsr107'
xmlns='http://www.ehcache.org/v3'
xsi:schemaLocation="
http://www.ehcache.org/v3
http://www.ehcache.org/schema/ehcache-core-3.1.xsd
http://www.ehcache.org/v3/jsr107
http://www.ehcache.org/schema/ehcache-107-ext-3.1.xsd">
<service>
<jsr107:defaults enable-management="true"
enable-statistics="true" default-template="defaultTemplate"/>
</service>
<cache-template name="defaultTemplate">
<expiry>
<ttl>120</ttl>
</expiry>
<heap>1000</heap>
</cache-template>
<cache alias="grailsBlocksCache"
uses-template="defaultTemplate"/>
<cache alias="grailsTemplatesCache"
uses-template="defaultTemplate"/>
<!-- other cache configuration -->
</config>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]