Questions tagged [jcache]

JCACHE :JSR 107- Java Temporary Caching API. Specifies API and semantics for temporary, in-memory caching of Java objects, including object creation, shared access, spooling, invalidation, and consistency across JVM's. source: https://jcp.org/en/jsr/detail?id=107

Introduction

Cache is the API being defined in JSR107. It defines a standard Java Caching API for use by developers and a standard SPI ("Service Provider Interface") for use by implementers.

Maven Dependency:

<dependency>
    <groupId>javax.cache</groupId>
    <artifactId>cache-api</artifactId>
    <version>1.0.0</version>
</dependency>

Gradle dependency:

compile 'javax.cache:cache-api:1.0.0'

The specification is available online.

184 questions
-1
votes
1 answer

distributed cache infinispan and varibale properties in infinispan.xml

so I m using infinispan 11.0 in embedded mode and I have two questions : First question : I am building an app for a client and I am going to have multiple caches ( local and distributed ). the thing is when I have one node alive is there a…
aabc
  • 9
  • 5
-1
votes
1 answer

possibility to take control in get and put jcache

is there a possibility to take controle in get and put caches methods in jcache / infinispan to modify the key of the cache before getting cached? I just want to take control to add the id of the tenant (case multi-tenancy application) in the key of…
aabc
  • 9
  • 5
-1
votes
2 answers

Jcache integration in hazelcast does not work

I am currently trying to integrate HazelCast cache with jcache objects, to base my developments on its standard. I need to integrate a large number of different configurations, for this I created a hazelcast.xml. Where I've tried with hazelcast map…
user1358518
  • 93
  • 2
  • 13
-1
votes
1 answer

Hazelcast with Spring boot

I'm new to Hazelcast and started a project newly with Spring boot, Hazelcast. Now I'm trying to integrate Hazelcast with spring boot. Lot of people have different opinions. But is JCache the best way to integrate Spring boot and Hazelcast?
1 2 3
12
13