Chinaunix首页 | 论坛 | 博客
  • 博客访问: 288753
  • 博文数量: 51
  • 博客积分: 2942
  • 博客等级: 少校
  • 技术积分: 555
  • 用 户 组: 普通用户
  • 注册时间: 2010-04-01 22:47
文章分类

全部博文(51)

文章存档

2011年(16)

2010年(35)

分类:

2010-05-14 08:38:02

引自 

HSS的福音啊。

The latest version of open source caching framework  supports write-behind caching and transaction management using Java Transaction API (). It also includes a Hibernate 3.3 caching pluginBulk Loading API for clustered caches, and runtime cache reconfiguration.

Ehcache 2.0 introduces write-through and write-behind caching. Write-through caching pattern is used by the applications to write data to the cache which causes writes to an underlying resource (e.g. a database). The cache acts as a facade to the underlying resource. Write-behind caching pattern uses the same client API, but the write happens asynchronously. The write-behind cachingfeature, supported as part of the new Ehcache API, works with asynchronous batching of updates to the database.

Transaction Management: The new JTA support enables the cache to participate as an XA resource in JTA transactions. It automatically detects and uses the following transaction managers in the order: Generic JNDI (e.g.Glassfish, , Weblogic, ), ,  JTA Transaction Manager, and . Ehcache 2.0 is not a "transactional" cache for Hibernate purposes. Ehcache 2.1 (beta version was recently released) provides the JTA support for Hibernate.

Ehcache 2.0 also includes an express mode that be used to cluster the application data via configuration changes, whether the data is in Hibernate, a distributed cache, or session objects. It supports distributed caching as a Hibernate second-level cache, as well as directly through the . Switching between local and distributed implementations is done with a configuration change. Other features in the new version include:

  • Bulk Loading: The bulk loading mode is used for loading data into caches using the Terracotta Server Array. This option can be used for the use cases like cache warming where caches need to be filled before bringing an application online and for periodic batch loading.
  • Configuration Management: There is a new management feature that provides dynamic configuration for Ehcache, whereby cache parameters like Time-To-Idle (TTI) and Time-To-Live (TTL) can be changed using the Terracotta management console or any JMX-compliant tool.
  • Web Sessions: An upgrade to Terracotta Web Sessions product, called Terracotta Express Web Sessions, is also part of the latest version and provides the HTTP session clustering in the web applications.
  • TC Server Array: The Terracotta Server Array (TSA) has been re-engineered to provide the caching features with cluster coherence, high availability and persistence.
  • OSGI: Support for  containers is also included.

Ehcache 2.0 includes support for Java EE containers like WebLogic, , JBoss, and . In a related news item, Ehcache team also released theEhcache Server which provides RESTful and SOAP APIs to Ehcache framework.


阅读(3403) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

安何2010-05-20 10:23:33