Hexo 3.2 Released

It has been a long time that Hexo is poor at handling large website. (#710, #1124, #283, #1187, #550, #1769, etc.) We tried hard to solve this problem and there’re several improvements in Hexo 3.2.

It’s all about speed

Caching rendered contents

Rendered contents are cached in the warehouse. This saves a lot of time and made hot processing (2nd-time processing) 1.7x faster.

Version 3.1 3.2
Cold processing 6.094s 6.454s
Hot processing 5.154s 3.002s

Lazy load language files of highlight.js

highlight.js is slow. Especially when it try to detect the language. Lazy load language files make processing faster and don’t have to load bunch of unused language files. However there’re some limitations:

  • Auto detect must be disabled.
  • You have to specify language in code block.

You can set auto detect disabled in _config.yml.

highlight:
auto_detect: false

Templates precompilation

Theme templates are precompiled if possible. It makes generation speed 2x faster.

Version 3.1 3.2
Cold generation 27.2s 13.6s
Hot generation 24.4s 12.6s

The following renderers have already supported this feature.

And it’s easy to implement precompilation for renderers. Just add a compile function to the renderer. Take EJS renderer for example:

var ejs = require('ejs');
var assign = require('object-assign');

function ejsRenderer(data, locals) {
return ejs.render(data.text, assign({filename: data.path}, locals));
}

ejsRenderer.compile = function(data) {
return ejs.compile(data.text, {
filename: data.path
});
};

module.exports = ejsRenderer;

Include/exclude source files

You can include/exclude specified source files in _config.yml.

include:
- .htaccess

exclude:
- tmp/**/*

More info: changelog, benchmark results.