2014-09-24 14:42 GMT+02:00 Chirayu Chiripal <chirayu.chiripal@gmail.com>:I was just wondering what will be the effect if we make current methods as static in those classes?
--It's almost the same thing to use a static or a non-static function. This is 2.5x slower than standard PHP function.See:Time: 1.7506999969482 //standard PHP functionTime: 4.3722500801086 //objectTime: 4.3722498416901 //object with static functionTime: 3.6722099781036 //PMA function, even this one is 2x slower than standard PHP function…
Hugues.