I need to recieve a big amount of data from external source. The problem is that external source sends data very slow. The workflow is like this:
- The user initiates some process from app interface (common it is fetching data from local xml file). This is quite fast process.
- After that we need to load information connected with fetched data from external source(basically it is external statistics for data from xml). And it is very slow. But user needs this additional inforamtion to continue work. For example he may perform filtering according to external data or something else.
So, we need to do it asynchronously. The main idea is to shows external data as it becomes available. The question is how could we organise this async process? Maybe some quess or something else? We`re using php+mysql as backend and jquery at front-end. Thanks a lot!