Speeding up CakePHP

后端 未结 7 1611
忘了有多久
忘了有多久 2020-12-12 13:29

I\'ve been a keen fan and user of CakePHP for about 2.5 years now, but the main bugbear that most fellow developers level at the framework is that it\'s slow, and the dispat

7条回答
  •  轮回少年
    2020-12-12 14:18

    For CakePHP 2.x the performance bottleneck can be usage of Hash:: functions (https://book.cakephp.org/2.0/en/core-utility-libraries/hash.html).

    They're very slow when using complex expressions. It results in better performance if you write this logic by yourself.

提交回复
热议问题