-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider deprecating ClassCollectionLoader & co. #20668
Comments
Yeah, the composer optimized autoloader kinds of defeat this, as it does not need any stat call to identify the file to be loaded. I'm all 👍 for deprecating this. The question then is whether we should really ship the new |
Even if we don't use it much, I'd say it's too late to remove |
I just tested it on one of my bigger projects (so not on a Symfony Standard Edition). I used
First 3 runs without any changes:
Then 3 runs with the changes:
So it seems in my tests its around 1ms faster 🎉 |
If it will be deprecated, I will remove the class load features for the kernel in #20107 |
Same results here. |
Then deprecating looks sensible to me. |
O say kill it with 🔥. This particular cache has only caused a huge load of bugs on my end, so far... |
It's end of epoch of pre-compiled class cache files! Burn them all! 🔥 |
…rabus) This PR was merged into the 3.3-dev branch. Discussion ---------- Don't load class cache and bootstrap file on php 7 As discussed in symfony/symfony#20668, the class cache features should be deprecated. Since the class cache and the bootstrap file are still useful on php 5, we load them only when running on php 5. A future php-7-only release of Symfony Standard should remove those blocks completely. Commits ------- 9b2e12f Don't load class cache and bootstrap file on php 7.
…ache (dbrumann) This PR was merged into the 3.3-dev branch. Discussion ---------- Deprecate ClassCollectionLoader and Kernel::loadClassCache | Q | A | ------------- | --- | Branch? | "master" | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | yes | Tests pass? | yes | Fixed tickets | #20668 | License | MIT As suggested by @nicolas-grekas in #20668 I added deprecation notices to ClassCollectionLoader and Kernel::loadClassCache. Commits ------- 660d79a Deprecates ClassCache-cache warmer.
This PR was merged into the 3.3-dev branch. Discussion ---------- [ClassLoader] Deprecated the component | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | yes | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Follow up of #20668 Commits ------- 8a37722 [ClassLoader] Deprecated the component
Calling for feedback + experiment from the community on this topic:
on a Symfony standard edition, prod env, no-debug, PHP 7, composer -o (ie normal setup for prod),
if I comment the line requiring
bootstrap.php.cache
and the call to$kernel->loadClassCache();
inweb/app.php
, it looks like my setup is not slowed down, if not a bit faster.I used
ab
for benching.That could mean we don't need these optims in PHP 7 era.
If this is confirmed, it means we could consider deprecating
ClassCollectionLoader
and$kernel->loadClassCache()
.Could any of you try the same and report some resulting numbers?
Thanks in advance!
The text was updated successfully, but these errors were encountered: