Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #36335, comment 144


Ignore:
Timestamp:
09/01/2016 01:49:17 AM (9 years ago)
Author:
MikeSchinkel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36335, comment 144

    v1 v2  
    2424> Too Much Code Running During Autoloading
    2525
    26 '''My preference would be that WordPres core would leverage a highly-optimized class-map autoloader''' ''(and not have the classmap be "temporary")'' used both for performance and for minimizing amount of code that one has to step through during debugging with XDEBUG, and encourage plugins and themes to use the class-map too. 
     26'''My preference would be that WordPress core would leverage a highly-optimized class-map autoloader''' ''(and not have the classmap be "temporary")'' used both for performance and for minimizing amount of code that one has to step through during debugging with XDEBUG, and encourage plugins and themes to use the class-map too. 
    2727
    2828Ideally the class-map autoloader would be optimized for the number of lines that need to run for a file to be autoloaded, and that the class-map loader would be run first in front of the other optional autoloaders.  And rather than separating concerns for the class-map loader, optimize it instead.