Is it possible to cache the routes' responses in Spring cloud gateway?
I have 2 routes defined
routes:
- id: users
uri: ${my_user_service.url}/users
order: 10000
predicates:
- Path=/users
- id: test
uri: ${my_test_service.url}/test
predicates:
- Path=/test
Basically I would like to cache the result of the route with id 'users' in order to call my_user_service only once per user (depending on the request body)