Hello everyone,
I am using Laravel and NextJS to create a cryptocurrency exchange right now, so I want to make sure that Laravel is suitable for the exchange and can handle the loads.
For instance, if 100 users simultaneously submit requests to buy cryptocurrency, Laravel can manage each one independently or process each one in a queue ?
Yes Laravel can manage several request simultaneously, but it also depends on other factors like your webhosting (processor, RAM, how many concurrent connections available).
And I think that you'll need to queue the actions and configure a supervisor to run several worker simultaneously.
We will be using our own high-configuration server.
One more thing I'd like to know: if I'm using the Laravel queue system to handle user requests (for example, using a third-party API), how would I send the third-party API response back to the user?