hugo/docs/content/en/about/benefits.md

2.5 KiB

title linktitle description date publishdate lastmod keywords menu weight sections_weight draft aliases toc
The Benefits of Static Site Generators The Benefits of Static Improved performance, security and ease of use are just a few of the reasons static site generators are so appealing. 2017-02-01 2017-02-01 2017-02-01
ssg
static
performance
security
docs
parent weight
about 30
30 30 false
false

The purpose of website generators is to render content into HTML files. Most are "dynamic site generators." That means the HTTP server---i.e., the program that sends files to the browser to be viewed---runs the generator to create a new HTML file every time an end user requests a page.

Over time, dynamic site generators were programmed to cache their HTML files to prevent unnecessary delays in delivering pages to end users. A cached page is a static version of a web page.

Hugo takes caching a step further and all HTML files are rendered on your computer. You can review the files locally before copying them to the computer hosting the HTTP server. Since the HTML files aren't generated dynamically, we say that Hugo is a static site generator.

This has many benefits. The most noticeable is performance. HTTP servers are very good at sending files---so good, in fact, that you can effectively serve the same number of pages with a fraction of the memory and CPU needed for a dynamic site.

More on Static Site Generators