Spring Boot GraphQL Tutorial #36 - Query Caching Server Side

Опубликовано: 03 Апрель 2026
на канале: Philip Starritt
4,823
60

Hi!

In this episode we will learn how to cache GraphQL queries on the server side.

The GraphQLResponseCacheManager interface provides a way to inject and query a cache (redis, in-memory, caffeine etc) before the resolvers execute.

The GraphQL responses are stored along with a cache key. A subsequent request with the same distinct cache key will return the previous queries response.

This caching solution provides us with full flexibility as we have access to the query, variables, headers etc in the caching layer.

Hope you enjoyed the video

Cheers,
Philip

Spring Boot GraphQL caching pull request on Github:
https://github.com/philip-jvm/learn-s...

Spring Boot GraphQL Kickstart: https://github.com/graphql-java-kicks...

About spring boot graphq: https://www.graphql-java-kickstart.co...

GraphQL Java: https://www.graphql-java.com/