~ubuntu-branches/ubuntu/trusty/ehcache/trusty

« back to all changes in this revision

Viewing changes to src/main/java/net/sf/ehcache/overview.html

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-05-06 14:53:07 UTC
  • mfrom: (1.1.7) (2.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130506145307-v5bhw5yu70re00l3
Tags: 2.6.7-1
* Team upload.
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
  </head>
5
5
  <body>
6
6
  <pre>
7
 
  Introduction
 
7
APIs for Ehcache, an in-process Java cache implementation. These can also be used as interfaces to manage data using BigMemory.
 
8
 
 
9
Introduction
8
10
============
9
11
ehcache is a pure Java, in-process cache with the following features:
10
12
 
16
18
   6. Distributed caching using multicast and RMI, with a pluggable API.
17
19
   7. Cache and CacheManager listeners
18
20
   8. Supports multiple Caches per CacheManager, and multiple CacheManagers per application.
19
 
   9. Acts as a pluggable cache for Hibernate 3.1, 3 and 2.1.
 
21
   9. Acts as a pluggable cache for Hibernate 
20
22
   10. Small foot print. Both in terms of size and memory requirements.
21
23
   11. Minimal dependencies apart from J2SE.
22
24
   12. Fully documented. See the online Documentation and the online JavaDoc.
23
25
   13. Comprehensive Test Coverage. See the clover test report.
24
 
   14. Available under the Apache 1.1 license. EHCache's copyright and licensing has been reviewed and approved by the Apache Software Foundation, making EHCache suitable for use in Apache projects.
 
26
   14. Available under the Apache 2.0 license. EHCache's copyright and licensing has been reviewed and approved by the Apache Software Foundation, making EHCache suitable for use in Apache projects.
25
27
   15. Production tested. EHCache is used on a large and very busy eCommerce site.
26
28
   16. Web caching, pull-through caches and other common caching implementations are provided in the ehcache-constructs module.
27
29
 
28
30
Java Requirements
29
31
=================
30
 
ehcache supports 1.3, 1.4, 1.5 and 1.6 at runtime. When compiling from source, the build process requires at least JDK1.5.
31
 
 
32
 
ehcache does not work with JDK1.1 and is not tested on JDK1.2.
 
32
ehcache supports 1.6 and 1.7 at runtime. When compiling from source, the build process requires at least JDK1.6.
33
33
 
34
34
Dependencies
35
35
============
36
 
For JDK1.4, ehcache requires commons-logging from Apache's Jakarta project.
37
 
 
38
 
For JDK 1.3, ehcache requires:
39
 
 
40
 
- Apache Jakarta's commons-collections, version 2.1.1
41
 
- Apache xerces (xml-apis.jar and xercesImpl.jar), version 2.5
42
 
 
43
 
All three dependencies are also Hibernate dependencies, so if you are using ehcache as a Hibernate plugin, dependency requirements are met.
 
36
- SL4FJ API and binding (see http://slf4j.org)
44
37
 
45
38
Installation
46
39
============
50
43
 
51
44
Documentation
52
45
=============
53
 
See http://ehcache.sourceforge.net/documentation for full documentation.
 
46
See http://ehcache.org/ for full documentation.
54
47
 
55
 
The JavaDoc is in the distribution and also online at http://ehcache.sourceforge.net/apidocs.
 
48
The JavaDoc is in the distribution and also online at http://ehcache.org/
56
49
</pre>
57
50
  </body>
58
51
</html>