Search code examples
javacachingconfigurationupdatesehcache

Programmatically disabling the Ehcache 3.7 update checker?


Our app used to use a legacy version (2.10) of Ehcache where we used to disable update checks via:

System.setProperty("net.sf.ehcache.skipUpdateCheck", "true");

We are now upgrading to the latest version of Ehcache (3.7 at the moment).

How does one programmatically achieve the same result?

I cannot find it in the docs.

Will the above still work or should it be changed to org.ehcache.skipUpdateCheck or something else?


Solution

  • No need. There is no update checked anymore.