Why cannot Apache handle multiple requests at the same time?

后端 未结 8 596
执笔经年
执笔经年 2021-01-31 21:23

I have AMPPS installed.

My Apache server cannot handle multiple php requests at once (for example if I call localhost/script.php multiple times, they are pr

8条回答
  •  粉色の甜心
    2021-01-31 21:38

    You can move session storing from files to database - than you would have possibility to request your files all at once without waiting - or - if you don't need session in your script turn it off (don't use session_start();)

提交回复
热议问题