Mobile app version of vmapp.org
Login or Join
Turnbaugh106

: Where are cached files stored by the W3 total cache plugin? I am planning to use caching for my website (W3 total cache plugin) and I was wondering whether the cached files will be save on

@Turnbaugh106

Posted in: #Cache

I am planning to use caching for my website (W3 total cache plugin) and I was wondering whether the cached files will be save on visitors personal computers or not?

I know that browsers also use caching, that files are saved on the personal computers (as I think). Is there a difference between this kind of caching and the one used for websites to increase their speed?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Turnbaugh106

1 Comments

Sorted by latest first Latest Oldest Best

 

@Alves908

It depends on the type of cache. Simply put, you've got two types of caching:


Client side caching.
Server side caching.


Client side caching, which involves the saving of files onto the user's computer:


CSS, images and JS files. These will be saved in the browser cache so that the user doesn't have to repeatedly download the same files from your server.
HTML, which can be achieved through some of the various HTTP cache headers.


Server side caching is different, as the files are stored on your server (obviously). This includes:


PHP bytecode. Whenever a PHP file is parsed, it is compiled into bytecode. By default, PHP will parse each file as though it is new. Because this is wasteful (PHP files don't change that much), many webmasters and server admins will cache the resulting bytecode and serve it up until the file in question changes (Look up OPcache). Implementing a bytecode cache will typically lower the amount of resources that your server is using, simply because your PHP files are not being parsed on every request.
Object caching. This is when the results of database queries are stored in the server's memory, using a daemon such as Memcached or Redis, etc.


When optimizing the load times of your website, it is best to use both client-side caching and server-side caching.

Note: Plugins such as W3 total cache will use file-based caching if a bytecode / object cache isn't installed. This means that physical files will be stored on your server.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme