Ehcache.
Ehcache is a pure Java, in-process cache with the following features: Fast, Simple, Acts as a pluggable cache for Hibernate 2.1. Small foot print. Both in terms of size and memory requirements. Minimal dependencies. Fully documented. See the online Documentation, FAQ and the online JavaDoc. Compreh....
Here is the list of declaration for ehcache. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>ehcache</groupId> <artifactId>ehcache</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for ehcache is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The ehcache-1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
The following table lists the most popular artifacts which are depending on ehcache-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | hibernate 3.1.3 Relational Persistence for Java | 11 |
The following packages are defined in the ehcache-1.1.jar
net.sf.ehcache net.sf.ehcache.config net.sf.ehcache.hibernate net.sf.ehcache.store
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>ehcache</groupId> <artifactId>ehcache</artifactId> <name>Ehcache</name> <version>1.1</version> <description>Ehcache is a pure Java, in-process cache with the following features: Fast, Simple, Acts as a pluggable cache for Hibernate 2.1. Small foot print. Both in terms of size and memory requirements. Minimal dependencies. Fully documented. See the online Documentation, FAQ and the online JavaDoc. Comprehensively Test Coverage. Scalable to hundreds of caches and large multi-cpu servers. Production tested. All versions of ehcache are production tested for several weeks on a large and very busy eCommerce site before release.</description> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> </dependencies> </project>