juanpb96 / FEM_space-tourism-website

A space website created with React + TypeScript
https://juanbonilla.me/FEM_space-tourism-website/
0 stars 0 forks source link

[Task] - Optimizing Data Fetching and Request Handling #65

Open juanpb96 opened 2 months ago

juanpb96 commented 2 months ago

Description

It's essential to optimize the number of calls made when fetching data for each page. Currently, it appears that a request is sent each time a user accesses a page. This practice can be inefficient, especially when users repeatedly visit the same page within a session and only perform GET requests. It would be more efficient to preload the data so that it's readily available during subsequent visits within the same session, reducing unnecessary server calls.

Tasks

Notes