Skip to content

Is it possible to have a cache that shares in-flight requests? #2002

Answered by peter-csala
njlr asked this question in Q&A
Discussion options

You must be logged in to vote

The cache policy implements a cache-aside pattern.

That means if your second request does not find any item in the cache with the given key
then it passes through the cache and fetches the data from the original data source, just like your first request.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@njlr
Comment options

@peter-csala
Comment options

Answer selected by njlr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants