How good is PHP performance?

后端 未结 8 1021
你的背包
你的背包 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:24

    Performance is greatly improved by using an op-code cache like The Alternative PHP Cache which is free and provides an significant performance increase by essentially "compiling" your scripts into op codes that can be used by the Zend Engine directly without the overhead (an overused term IMO) of parsing the code on each request. You can see a benchmark here and a post from my blog about using APC cache for speeding up Zend_Loader

提交回复
热议问题