Hello
I need to develop an application that will receive a considerable number of users. The big point is the order of queries of users are relevant. For example, a user X has made a request and will run a series of queries. However, user Y has made a request that will take less time (something around -3sec). However, user Y can only be processed after X is processed, otherwise it will interfere with the final result.
I thought of doing the application in IONIC and the part of the API in node + express, but from what I understood, these requests would generate threads, so cases like described could happen, right?
Is there a way to put all these requests in a queue? Or a framework that works best this way?
Thanks for the help!