Quantcast
Channel: Active questions tagged redis+java - Stack Overflow
Viewing all articles
Browse latest Browse all 2203

How to enable caching in a Spring boot application by using Mongo as database and Redis as cache

$
0
0

I am trying to understand how to use the spring boot caching framework that has annotations such has @EnableCaching and @Cacheable to combine both Mongo and Redis. Let's assume I have two DAO layers one for redis and one for Mongo

public class MongoDAO implements DAO{   public getValueId(String id){       //gets value from Mongo   }}public class RedisDAO implements DAO{    public getValueId(String id){      // gets value from hash map in redis. Assume HashKey is "values".    }}

I haven't found a clear example that explains how to combine both DAOs by implementing the Spring Data Caching framework. I am using Sprint Data Redis, Redis Template for the redis operations.


Viewing all articles
Browse latest Browse all 2203

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>