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
With so much stations it is inefficient to keep the stations requests synchronous. It takes a lot of time to go through all the stations.
Suppose it takes 3 seconds to process a station request. A loop through all the stations (approx. 400 stations) would take 400 * 3 = 1200 second = 20 minutes !!!
A solution may be to use asynchronous calls for the stations requests.
The text was updated successfully, but these errors were encountered:
With so much stations it is inefficient to keep the stations requests synchronous. It takes a lot of time to go through all the stations.
Suppose it takes 3 seconds to process a station request. A loop through all the stations (approx. 400 stations) would take 400 * 3 = 1200 second = 20 minutes !!!
A solution may be to use asynchronous calls for the stations requests.
The text was updated successfully, but these errors were encountered: