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?
相关问题
- Specifying the order of proxy creation in Spring
- How to get size of data in Infinispan cache, alter
- Strategies for Java ORM with Unreliable Network an
- How can I make Ehcache never evict from diskstore?
- how to use ehcache in spring mvc with hibernate
相关文章
- EhCache default cache in java
- Spring: Multiple Cache Managers
- EhCache Replication with Websphere MQ
- Spring Ehcache3 cause exception with with key-type
- Does Ehcache 2.1 support the transactional cache c
- Load EhCache diskstore content into memory
- Simple Java caching library or design pattern?
- Any Java caches that can limit memory usage of in-
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.
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.