-
Notifications
You must be signed in to change notification settings - Fork 86
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
New performance page #16
Conversation
Proposal for a new perfromance page.
@@ -100,7 +100,7 @@ In case you work with systems like nginx or LiteSpeed you have these: [LiteSpeed | |||
|
|||
Every time a request comes to your web server, PHP has to execute and calculate everything, but PHP allows an internal operation caching system, which means that a copy of each execution is stored in memory or on disk. If it is active and the same operation is executed again, the system will take advantage of this system to return the calculation much faster, since it does not have to calculate everything completely. | |||
|
|||
If your hosting provider has it active and configured, you can make use of it, but always taking into account that you will need a plugin to make the invalidation of the contents when necessary. | |||
If your hosting provider has it active and configured, you can make use of it, but always taking into account that you may need a plugin to make the invalidation of the contents when necessary, considering `opcache.validate_timestamps` may or may not be configured. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't a review for the whole new page, but since this is documentation for hosting providers, I'd prefer to see this written in a way that recommends the best way for hosts to configure OPcache, rather than a way for users to work around how the host has it configured.
There are many ways to make the calls corresponding to the scheduled tasks, so it is highly recommended that you talk to your web hosting provider for recommendations. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same here -- let's recommend or give options for what is recommended, rather than suggesting a host contact their host.
Requires a lot of improvement... |
Proposal for a new perfromance page.