JCache 与 Oracle Coherence
Oracle Coherence 声明它“兼容 JCache”。如何获取针对 JSR-107 编写的代码,特别是 ehcache-jcache jar,并针对 Oracle Coherence 运行它?
Oracle Coherence states that it is "JCache-compliant". How can I take my code written against JSR-107, specifically the ehcache-jcache jar, and run it against Oracle Coherence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最终的 JCache API 预计将于 2013 年夏季/秋季发布。然后您就可以看到 Coherence 支持这些最终的 API。
更新(2014 年 2 月 14 日)- 一旦我们勾选了一些合法的复选框,API 和 API 就会立即生效。 RI& TCK 已全部准备好提交审批,下一版本的 Coherence(版本 12.1.3)将包括 &支持最终的 API。
更新(2014 年 7 月 11 日)- JCache 标准已完成并退出,Coherence 现在正式支持 JCache 标准;请参阅以下文档: http://docs.oracle.com/ middleware/1213/coherence/develop-applications/jcache_part.htm
为了充分披露,我在 Oracle 工作。这篇文章中表达的意见和观点是我自己的,并不一定反映我的雇主的意见或看法。
Final JCache APIs are expected to be released in summer/fall 2013. Then you can expect to see those final APIs supported in Coherence.
Update (14 February 2014) - As soon as we check off some legal check-boxes, the APIs & RI & TCK are all ready to be submitted for approval, and the next version of Coherence (version 12.1.3) will include & support the final APIs.
Update (11 July 2014) - The JCache standard is done and out, and Coherence now officially supports the JCache standard; see the documentation at: http://docs.oracle.com/middleware/1213/coherence/develop-applications/jcache_part.htm
For the sake of full disclosure, I work at Oracle. The opinions and views expressed in this post are my own, and do not necessarily reflect the opinions or views of my employer.
ehcache-jcache jar 是 JSR-107 的具体实现。 Coherence 与该实现不二进制兼容。 Coherence 符合 JSR-107 中指定的接口,但提供了自己的实现。
Coherence 提供了 JSR-107 之外的大量功能,因此仅将其用于 JSR-107 就显得有些过分了。
The ehcache-jcache jar is a specific implementation of JSR-107. Coherence is not binary compatible with that implementation. Coherence is compliant with the interfaces specified in JSR-107 but provides its own implementation.
Coherence offers a huge number of features beyond JSR-107, so it would be overkill to use it just for JSR-107.