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
Why do you send the entire json file to the client-side on each change to the input?
You could have filtered the data in the server and returns only the required results to the client-side since the file is too big and it is time-consuming to do filtering in the client-side. This will result in a very bad experience since the user has to wait too long until the results are rendered to the screen.
The text was updated successfully, but these errors were encountered:
country-finder/src/handlerData.js
Lines 33 to 44 in d6d5f34
Why do you send the entire json file to the client-side on each change to the input?
You could have filtered the data in the server and returns only the required results to the client-side since the file is too big and it is time-consuming to do filtering in the client-side. This will result in a very bad experience since the user has to wait too long until the results are rendered to the screen.
The text was updated successfully, but these errors were encountered: