Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Kreng's avatar
Level 5

Laravel handles user's concurrent requests sequentially

Laravel handles user's concurrent requests sequentially. How to handle requests concurrently? It seems that session (held in Redis store) blocks concurrent requests but maybe it's not the reason. Where the problem? Link to network screenshot: https://i.stack.imgur.com/gXimd.png Four requests named "data_range".

0 likes
5 replies
burlresearch's avatar

if you want more parallelism in your web-server responses, you could make sure your server is using HTTP/2.

1 like
Kreng's avatar
Level 5

Thanks! Would move to API calls as stateless also help handle concurrent requests?

Please or to participate in this conversation.