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
Resolves NEX-2296.
Add singleflight to deduplicate concurrent GET/HEAD/OPTIONS/TRACE requests.
Deduplicate concurrent requests to shared list endpoints using singleflight.
Many resources, such as databases,
do not have individual endpoints and instead share a single "list" endpoint (ServiceDatabaseList).
This often results in multiple simultaneous requests for the same data,
which can cause redundant API calls and unnecessary load.
Currently, the client uses only GET for reading,
but additional methods may be supported in the future.
0 commit comments