Skip to content

Conversation

@ajuvercr
Copy link

@ajuvercr ajuvercr commented Aug 4, 2021

When a requests hits the cache, the cache might have an instant cached response.
When the cache gets 2 requests simultaneously with the same key, so the second should get a cached request, yet it doesn't because the cache is only updated after the request is finished.

What happens:

          cache
req1   \   |
         \ |
req2   \   |
         \ |
         / |
req1   /   |
         / |
req2   /   |

Expected:

What happens:

          cache
req1   \   |
         \ |
req2   \   |
         \ |
         / |
req1,2 /   |

This pull request alleviates this by creating a Coalescer during the request on which incoming requests can attach and get the same response as the starting request.

@ajuvercr ajuvercr force-pushed the feature/coalesce-handler branch from a81f6d3 to a23d7fc Compare August 4, 2021 13:06
@ajuvercr ajuvercr force-pushed the feature/coalesce-handler branch from a23d7fc to 0b3de0c Compare August 4, 2021 13:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant