Strategy to make app efficiently when we can’t get the real time data
We have an issue in making the .NET in-house app to work effeciently.
We have 2 systems, one in-house, one system from the vendor. The vendor can’t provide the real time data nor can we query the real time data, they can only push the data back every 5 min.
After the data is sent from in house app to vendor’s system, they will process it. The issue is: the in-house app can’t send the next set of data to the vendor’s right away because we need the push back data for calculation and decide what needs to be sent to the other side. As a result, I have to wait 5 min for each item. It becomes unacceptable when we have 100 rows to process。 it means it will take 500 min = 8 hours.
Please advise is there is a better way to do this? Your help would be greatly appreciated!
We have an issue in making the .NET in-house app to work effeciently. We have 2 systems, one in-house, one system from the vendor. The vendor can’t provide the real time data nor can we query the real time data, they can only push the data back every 5 min. After the data is sent from in house app to vendor’s system, they will process it. The issue is: the in-house app can’t send the next set of data to the vendor’s right away because we need the push back data for calculation and decide what needs to be sent to the other side. As a result, I have to wait 5 min for each item. It becomes unacceptable when we have 100 rows to process。 it means it will take 500 min = 8 hours. Please advise is there is a better way to do this? Your help would be greatly appreciated! Read More