You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the fetchff plugin only utilizes a short-lived, per-request configuration that is passed during each request. This approach does not effectively handle request deduplication, potentially leading to redundant network traffic and increased server load.
To improve the efficiency of the fetchff plugin, we need to implement a strategy that uses a generated cache key for request deduplication. This will help avoid unnecessary requests and improve response times.
Expected behavior:
If previous request to the same endpoint is in progress elsewhere, the current call should await for the call from the previous one to finish.
The text was updated successfully, but these errors were encountered:
MattCCC
changed the title
Enhance Request Deduplication with Generated Cache Key
[Improvement] Enhance Request Deduplication with Generated Cache Key
Sep 22, 2024
Currently, the fetchff plugin only utilizes a short-lived, per-request configuration that is passed during each request. This approach does not effectively handle request deduplication, potentially leading to redundant network traffic and increased server load.
To improve the efficiency of the fetchff plugin, we need to implement a strategy that uses a generated cache key for request deduplication. This will help avoid unnecessary requests and improve response times.
Expected behavior:
If previous request to the same endpoint is in progress elsewhere, the current call should await for the call from the previous one to finish.
The text was updated successfully, but these errors were encountered: