timguy
timguy

Reputation: 2602

Disable / Switch off Ehcache3

Anybody knows how to switch off ehcache 3 in an application? (e.g. for testing purposes or fall back scenarios in production)

Upvotes: 4

Views: 1015

Answers (1)

Louis Jacomet
Louis Jacomet

Reputation: 14500

There is no such thing in Ehcache 3 at the moment. JCache does not have that option either.

You cannot size a resource to 0 so that's not an option either.

From here, two options:

  • add a layer in your application doing the indirection and add the disabled support to that.
  • Make a feature request on the Ehcache users mailing list to get it considered for addition.

Upvotes: 4

Related Questions