That is correct! The Spring Cache Abstraction <http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#cache> [0] supports *JCache* (JSR-107) caching annotations <http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#cache-jsr-107> [1], and of course, Spring Data GemFire <http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/#apis:spring-cache-abstraction> [2] enables either *Pivotal GemFire* or *Apache Geode* to serve as a caching provider. To use *Spring Data GemFire* with *Apache Geode* instead of *Pivotal GemFire*, a developer only needs to adjust their Maven coordinates to...
<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-gemfire</artifactId> <version>*1.7.0.APACHE-GEODE-EA-SNAPSHOT*</version> </dependency> See this article <https://spring.io/blog/2015/06/12/spring-data-gemfire-supports-apache-geode> [3] for more details. [0] - http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#cache [1] - http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#cache-jsr-107 [2] - http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/#apis:spring-cache-abstraction [3] - https://spring.io/blog/2015/06/12/spring-data-gemfire-supports-apache-geode On Thu, Sep 10, 2015 at 8:43 AM, Anthony Baker <[email protected]> wrote: > IIRC correctly, the Spring Cache abstraction supports JSR-107. > > Anthony > > [1] > https://spring.io/blog/2014/04/14/cache-abstraction-jcache-jsr-107-annotations-support > < > https://spring.io/blog/2014/04/14/cache-abstraction-jcache-jsr-107-annotations-support > > > > > > On Sep 9, 2015, at 10:12 PM, Vishal Rao <[email protected]> wrote: > > > > Hello, > > > > What's the story with GemFire/Geode working as a provider for the > > javax.cache API (JCache JSR 107) and how does Spring-Data relate to or > > differ from JCache? > > > > I'm looking for any pointers/information about current status or plans > that > > may be afoot? > > > > Thanks, > > Vishal > > > > -- > > "The World is a book, and those who do not travel read only a page." - > St. > > Augustine. > > -- -John 503-504-8657 john.blum10101 (skype)
