Can't create redis cache with latest imcache (0.1.2)

I have defined the dependency as follows, but I cannot create a new redis cache.

<dependency>
  <groupId>com.cetsoft</groupId>
  <artifactId>imcache</artifactId>
  <version>0.1.2</version><!--Can be updated for later versions-->
</dependency>

      

My code looks like this, but I am getting build failures.

Cache<String, User> cache = CacheBuilder.redisCache().build();

      

+3


source to share


1 answer


Although we released version 0.1.2, we have not completed the redis cache support. So the redis cache is not available at the moment. We are sorry for any inconvenience. We introduce the client. Please check out our repository for more details. https://github.com/Cetsoft/imcache/tree/master/imcache-redis/src/main/java/com/cetsoft/imcache/cache/redis



+2


source







All Articles