forked from ehcache/ehcache.org-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 ehcache#72 Updates for Ehcache 3.1 documentation
* Includes support for 3.0 and 3.1 docsets in parallel * Includes version updates to relevant pages * Includes 3.1 XSD set
- Loading branch information
Showing
16 changed files
with
936 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
_site | ||
.sass-cache | ||
.DS_Store | ||
_eh3 | ||
documentation/3.0 | ||
/_eh3* | ||
/documentation/3* | ||
.idea | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
<h2>Ehcache 3 has been officially released!</h2> | ||
This new major version of Ehcache offers the following | ||
<h2>Ehcache 3.1 is now available!</h2> | ||
<p> | ||
This version of Ehcache adds distribtued caching capabilities via a new generation of <a href="http://terracotta.org">Terracotta server</a>. | ||
</p> | ||
<p> | ||
Watch for continued rapid improvements to features, stability and performance of the 3.1 line throughout the coming weeks! | ||
</p> | ||
As a reminder, Ehcache 3.0 introduced the following: | ||
<ul> | ||
<li>Revamped API that leverages Java generics and simplifies Cache interactions,</li> | ||
<li>Full compatibility with javax.cache API (JSR-107),</li> | ||
<li>Offheap storage capabilities, including offheap only caches,</li> | ||
<li>Improved performance over Ehcache 2.x,</li> | ||
<li>Out of the box Spring Caching integration thanks to the javax.cache support,</li> | ||
<li>Out of the box Spring Caching and Hibernate integration thanks to the javax.cache support,</li> | ||
<li>And many more ...</li> | ||
</ul> | ||
"Official" builds of 3.0 are available on the project's GitHub <a href="https://github.com/ehcache/ehcache3/releases/tag/v3.0.0">release page</a> or from Maven Central - see below. | ||
"Official" builds are available on the project's GitHub <a href="https://github.com/ehcache/ehcache3/releases" target="_blank">release page</a> or from Maven Central - see below. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
~ Copyright Terracotta, Inc. | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<xs:schema version="1.0" | ||
xmlns:jsr107="http://www.ehcache.org/v3/jsr107" | ||
xmlns:eh="http://www.ehcache.org/v3" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
elementFormDefault="qualified" targetNamespace="http://www.ehcache.org/v3/jsr107"> | ||
<xs:import namespace="http://www.ehcache.org/v3"/> | ||
|
||
<xs:element name="mbeans" type="jsr107:mbeans-type" substitutionGroup="eh:service-configuration"/> | ||
|
||
<xs:element name="defaults" type="jsr107:defaults-type" substitutionGroup="eh:service-creation-configuration"> | ||
<xs:key name="default-template-ref"> | ||
<xs:selector xpath="cache-template"/> | ||
<xs:field xpath="@name"/> | ||
</xs:key> | ||
</xs:element> | ||
|
||
<xs:complexType name="defaults-type"> | ||
<xs:sequence> | ||
<xs:element name="cache" type="jsr107:cache-type" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:key name="template-ref"> | ||
<xs:selector xpath="cache-template"/> | ||
<xs:field xpath="@name"/> | ||
</xs:key> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="default-template" type="xs:IDREF" use="optional"/> | ||
<xs:attribute name="jsr-107-compliant-atomics" type="xs:boolean" use="optional"/> | ||
<xs:attribute name="enable-management" type="xs:boolean" use="optional"/> | ||
<xs:attribute name="enable-statistics" type="xs:boolean" use="optional"/> | ||
</xs:complexType> | ||
|
||
<xs:complexType name="cache-type"> | ||
<xs:attribute name="name" type="xs:ID" use="required" /> | ||
<xs:attribute name="template" type="xs:IDREF" use="required" /> | ||
</xs:complexType> | ||
|
||
<xs:complexType name="mbeans-type"> | ||
<xs:attribute name="enable-management" type="xs:boolean" use="optional"/> | ||
<xs:attribute name="enable-statistics" type="xs:boolean" use="optional"/> | ||
</xs:complexType> | ||
</xs:schema> |
Oops, something went wrong.