From c8cfbadfc62713eb3a1267bbb7cdd5a9827d1745 Mon Sep 17 00:00:00 2001 From: Declan Date: Tue, 3 Oct 2023 22:23:07 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c8c66e2..9d90355 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ This repository is a simple experiment revolved around implementing request coal ## How does it work? -When a client makes a request for an item, as they're name in this demo, of a specific id, it adds a task to the coalescer queue and waits for the result of that task. Any subsequent requests for items of the same ID, in the meantime, will subscribe to the future result of that first pending task instead of performing their own read query. +When a client makes a request for an item of a specific id, it adds a task to the coalescer queue and waits for the result of that task. + +Any subsequent requests, recieved in the meantime, for items of the same ID will subscribe to the future result of that first pending task instead of performing their own read query. ![Coalescing Diagram](/docs/img-1.png)