Hi,
There is any possible I can cache the response of graphql query in spring boot application using redis cache.
Right now I have cached the using reactiveRedisTemplate and able to retrieve the data from cache.
Question:
- The above way becomes reactive way of caching. Is there is any way on graphql way of cache which I can utilize in spring boot application.
- I have read ( Server-side caching - Apollo GraphQL Docs) where I am seeing you can have server side caching. How to do the same in spring boot graphql application.