Why cannot Apache handle multiple requests at the same time?

后端 未结 8 589
执笔经年
执笔经年 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:30

    Probably becouse of sessions locking. When you don't need to edit session variables, close it.

    http://php.net/manual/en/function.session-write-close.php

提交回复
热议问题