How good is PHP performance?

后端 未结 8 1050
你的背包
你的背包 2021-02-02 16:11

This is a follow up to a recent post I\'ve seen which suggests that PHP performance is poor:

\"PHP. IS. ALWAYS. THE. BOTTLENECK. My server farms, let me show you them! P

8条回答
  •  滥情空心
    2021-02-02 16:37

    PHP may not be as fast as compiled server side languages, but it is still pretty fast and does the job.

    The "speed" aspect of php has more to do with the user experience than with the performance itself.

    AJAX applications based on PHP don't get categorized as "slow" or "unresponsive": the user has so much to do while a single request completes! Also, being "uniformly slow" with all operations is much less painful for the user than showing having erratic performance speed.

    One of the previous comments has summarized it quite aptly: language don't haz speed! the application doez.

    cheers, jrh

提交回复
热议问题