Snippets are tiny notes I've collected for easy reference.
Pre-generate pages or load a web cache using wget
Many web frameworks and template engines will defer the generation the HTML version of a document the first time it is accessed. This can make the first hit on a given page significantly slower than subsequent hits.
You can use wget to pre-cache web pages using a command such as:
wget -r -l 3 -nd --delete-after <URL>
Where:
-r(or--recursive) will causewgetto recursively download files-l N(or--level=N) will limit recursion to at most N levels below the root document (defaults to 5, useinffor infinite recursion)-nd(or--no-directories) will preventwgetfrom creating local directories to match the server-side paths--delete-afterwill causewgetto delete each file as soon as it is downloaded (so the command leaves no traces behind.)
Published 10 Feb 2014
Snippets are tiny notes I've collected for easy reference.
