Prevented duplicated parallel HTTP calls #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Salve,
notavo che l'app effettua svariate richieste identiche in parallelo agli endpoint index.json (es: https://nodc.ogs.it/erddap/info/E2M3A_TS/index.json).
Ho dato un'occhiata al meccanismo di caching implementato nei file
cache.interceptor.ts
ecache.service.ts
e ho visto che il dato viene inserito nella cache solo quando la risposta HTTP è completata. Pertanto eventuali richieste identiche che partono in parallelo vengono comunque eseguite tutte.Dovrebbe esser possibile gestire richieste che partono in parallelo inserendo nella cache degli oggetti di tipo
Observable
al posto degli oggettiHttpResponse
.Ho visto che l'attuale implementazione sembra esser presa da qua: https://stackoverflow.com/a/56590462
Per le modifiche proposte in questa PR invece ho preso spunto da qua: https://stackoverflow.com/q/63303537
Ulteriore nota: né l'implementazione attuale né quella proposta rimuovono gli oggetti inseriti nella cache.
Checklist
master
branch (ignore for branch specific issues).