Anybody knows how to switch off ehcache 3 in an application? (e.g. for testing purposes or fall back scenarios in production)
- For ehcache 2 this was possible with:
net.sf.ehcache.disabled=true
as described here - How to disable all caches in ehcache3 (prefered via ehcache.xml)?
org.ehcache.core.Ehcache
does not consist any disable functionallity- Is setting
<heap unit="MB">0</heap>
inehcache.xml
in a valid option? - I use JCache (aka JSR-107) with ehcache3 as implementation, maybe this give some more choices?