我试图找到一个明确的答案,即自动加载在使用APC时会导致性能下降的原因及其原因(基准测试?)
P.S。使用google / stackoverflow找到了此link,但我想知道这是否仍然存在?必须改进PHP来处理这个问题?因为autoload很酷!
答案 0 :(得分:6)
就个人而言,我不相信依赖__autoload()是一种很好的做法。 PHP是一种松散类型的语言,而不是一种懒惰的语言。 :)
在这里查看一些表现:
Rasmus对此的回答(你也发现了)是我多年来的指导:
<arnaud_> does autoload have a performance impact when using apc ?
<Rasmus_> it is slow both with and without apc
<Rasmus_> but yes, moreso with apc because anything that is autoloaded is pushed down into the executor
<Rasmus_> so nothing can be cached
<Rasmus_> the script itself is cached of course, but no functions or classes
<Rasmus_> Well, there is no way around that
<Rasmus_> autoload is runtime dependent
<Rasmus_> we have no idea if any autoloaded class should be loaded until the script is executed
<Rasmus_> top-level clean deps would speed things up a lot
<Rasmus_> it's not just autoload
<Rasmus_> it is any sort of class or function declaration that depends on some runtime context
<Rasmus_> if(cond) function foo...
<Rasmus_> if(cond) include file
<Rasmus_> where file has functions and classes
<Rasmus_> or heaven forbid: function foo() { class bar { } }
答案 1 :(得分:5)