Cache avalanche
#4367
Replies: 1 comment 3 replies
-
This seems expected since in a reactive context what is cached is the result of the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When there is no cache and in a high concurrency state, the cache does not converge and the request will penetrate to the backend. The same situation occurs when the cache is invalid.
Example:
When I make concurrent requests, many requests will access the backend, which is a problem in high-concurrency design.
The console will print a lot of 1 and 2.
Beta Was this translation helpful? Give feedback.
All reactions