quickshiftin / wfpc

Magento full page cache warmer
GNU General Public License v3.0
101 stars 28 forks source link
cache magento

wfpc

FREE Magento full page cache warmer

wfpc relies on a sitemap.xml file; you can read how to generate one for your Magento site here. Once you have a sitemap generated (and an FPC configured), you're good to hit the site with the cache warmer.

Usage

Testing Performance

wfpc has two modes of operation, the first is test mode. This randomly selects 10 URLs from your sitemap to load. An example

./wfpc -t http://mymagentosite.com/sitemap.xml

You'll see a fancy summary of your site's performance

Finished testing your Magento site performance
Total download time (in seconds)   : 5.0269110202789
Total download time (formatted)    : 0:0:5.026
Average page time (in milliseconds): 502.69110202789

Warming the FPC

To actually warm the FPC, use -w as the first argument. wfpc will fetch each URL listed in sitemap.xml synchronously.

The warmer will run an initial test, warm your entire site, then test again and report on performance gain

Finished warming your Magento site performance
Average page time (in milliseconds): 517.31648445129
Speedup is 75.07%

Delayed requests

If you want to put a delay between requests, you can add a -d=delay-seconds after the -w argument. An example

No delay
./wfpc -w http://mymagentosite.com/sitemap.xml
With 1 second delay
./wfpc -w -d=1 http://mymagentosite.com/sitemap.xml

Test or Run on unsecure urls

./wfpc -k -t https://192.169.1.234/sitemap.xml
./wfpc -k -w https://192.169.1.234/sitemap.xml

If you have a large site with a lot of URLs to warm, you might consider running wfpc within a screen session.

Magento 2 FPC configuration tips

Magento 1 FPC configuration tips

Notes