Hello @stevenmaas
Thank you for reaching out and I am happy to help
There is no button to preload cache. When the Cache preload is set and active, the preload starts once the page is visited.
What preload cached does is:
Check the last offset
– Check how many URLs are allowed to be processed per run
– Fetch all URLs from sitemap (even nested sitemaps work)
– Loop through a set of URLs to visit them
If the end of the list is reached, it will start from the beginning of the next run. If the cache is purged or content is updated, the preload starts again or preloads from the page that is purged.
You can also use wp-cli to for preloading. so, instead of calling wp-cron via crontab – you should call it directly via
wp w3-total-cache pgcache_prime
and track the output of which pages/sitemap positions are primed by the script
Calling the wp-cli command is the same as the cronjob, but if you want you can specify where to start this run and how many pages should be visited (instead of using the configuration values)
I hope this helps!
Thanks!