Skip to content

Releases: ehcache/ehcache3

Milestone 1

24 Mar 11:12
Compare
Choose a tag to compare

Ehcache 3.0.0.m1 release

First Milestone release

This first milestone marks the arrival of tiering and especially offers an off-heap tier.

The off-heap store extends the in-memory store to memory outside the of the object heap. This store, which is not subject to Java garbage collection (GC), is limited only by the amount of RAM available.

Getting started

Ehcache 3.0.0.m1 has been released to maven central under the following coordinates:

<dependency>
  <groupId>org.ehcache</groupId>
  <artifactId>ehcache</artifactId>
  <version>3.0.0.m1</version>
</dependency>

Or can be downloaded below.
Note that if you download Ehcache jar you will need two additional jars in your classpath:

Further reading

Release 3.0.0.Alpha

12 Dec 09:46
Compare
Choose a tag to compare

Ehcache 3.0.0.Alpha release

First Alpha release

Ehcache3 is a brand new API for the well known caching library for Java, which was first released 10 years ago. This first alpha release focuses on providing the feature set necessary for first class support of JSR-107, aka JCache, and a few additional items:

  • Support for JSR-107
  • XML configuration support
  • Cache templates to enhance existing JSR-107 deployments
  • New Core Ehcache3 APIs (work in progress)
  • New modular core, with extension points

Getting started

Ehcache 3.0.0.Alpha has been released to maven central under the following coordinates:

<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>3.0.0.Alpha</version>

Or can be downloaded below.
Note that if you download Ehcache jar you will need one additional jar in your classpath:

You'll also need the javax.cache API on your classpath:

<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>1.0.0</version>

Further reading