Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Entry Process Help w/ WordPress

netsavy006

Legendary Coder
I got emailed the link below from the Infinity Host about the Entry Process Limit and it suggested a couple of things that I want to ask for clarification.

One suggestion read:
Install caching on your website, to help ensure code is executed fewer times.

So I installed on WordPress the "WP Super Cache" Plugin.

Is that what Infinity meant by installing a cache?

2nd Suggestion:
Remove unnecessary plugins and scripts from your website. The less code is being executed on your website, the less time it generally needs to generate a response (which means the entry process quits faster).

I've attached an image that shows all the plugins I'm using on
WordPress. Do any of them affect the entry process?

I appreciate all answers and feedback.
Thanks.
 

Attachments

  • plugin.png
    plugin.png
    19.1 KB · Views: 4
Yeah, so an entry process is just "what it takes to start loading your page."
There is still an entry process, even with cached files. For example, a visitor could load a page on your website... The entry process involves showing the correct file(s) and information, however some of that may be cached and some may not. Caching is good all around, and it definitely improves site loading speeds.

For example, imagine you have an image that is 10 MB in size. This image needs to be "downloaded" by the user, so they can see it. This causes 10MB of bandwidth to be used on your server, and it also involves some basic processing because your server needs to fetch that file and display it. However, if the 10MB photo is cached then your server is only really saying "hey display this file" and the cache is saying "cool, we already cached/downloaded that file", so even though the 10MB photo is displayed again, it's in the user's cache so it doesn't need to be re-downloaded to display. This means that the cached image only uses the 10MB of bandwidth for the first load (per user), and doesn't use any bandwidth to display the second time. Of course, other elements and parts of the page may be re-downloaded and use some bandwidth. However, the more data you have cached, the less things need to be re-downloaded, and the faster your site becomes.

Caching is great, but be careful that you don't cache "too much". For example, if you have a page that changes every single hour (for whatever reason), and it's cached, then users won't see the new versions. For example, you could create a script that makes your logo a different color every 10 minutes. Perhaps the file is called "logo.png" and your script REPLACES logo.png with a new version every 10 minutes. Well, even though the file has changed completely, the cache doesn't understand this. This is because the cache knows that "logo.png" is already saved in the cache, but it doesn't know when a new logo.png is there unless you give it specific instructions telling it that the file has changed.

On the flip side, not caching anything (using a forced no-cache) is bad because it forces every user to re-download every asset on your site each page load. This is not good, even for things other than images and videos. For example, large JS / CSS or other files can be cached without much issue, so there's no need to force a no-cache on those files unless they (for whatever reason) change frequently or dynamically.
 
Back
Top Bottom