GitHub-jekyll静态博客快速构建与优化--jekyll serve --incremental --profile

2020/01/25 博客 共 2111 字,约 7 分钟

我的jekyll静态博客部署在GitHub上,平时自己本地测试的时候运行命令jekyll serve即可启动:

C:\Users\peter\Documents\GitHub\xxx.github.io>jekyll serve
Configuration file: C:/Users/peter/Documents/GitHub/xxx.github.io/_config.yml
            Source: C:/Users/peter/Documents/GitHub/xxx.github.io
       Destination: C:/Users/peter/Documents/GitHub/xxx.github.io/_site
 Incremental build: disabled. Enable with --incremental
      Generating...
   GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
                    done in 10.26 seconds.
 Auto-regeneration: enabled for 'C:/Users/peter/Documents/GitHub/xxx.github.io'
    Server address: http://127.0.0.1:4000
  Server running... press ctrl-c to stop.
      Regenerating: 1 file(s) changed at 2020-01-25 14:12:39
                    _posts/2020-1-25-github-jekyll-fast-build.md
                    ...done in 4.9158215 seconds.

但当博客数量增多后(现在有80个内容页面),修改一个文件中的一行也需要等待很久,就如上面展示的一样,修改一个文件要等5秒钟左右,简直不能忍。

使用命令jekyll serve --verbose查看详细输出后发现,一个文件的修改会导致所有文件全部重新编译,所以速度很慢,尤其在大型网站上。

使用命令jekyll serve --profile查看自己的网站有哪些地方可以优化:

Filename                                                      | Count |    Bytes |  Time
--------------------------------------------------------------+-------+----------+------
_layouts/default.html                                         |    99 | 2390.60K | 1.338
_layouts/post.html                                            |    78 | 1096.04K | 1.164
_includes/header.html                                         |    99 |  643.77K | 0.848
_includes/comments.html                                       |    90 |   55.66K | 0.181
_includes/footer.html                                         |    99 |  329.29K | 0.174
_layouts/wiki.html                                            |     7 |   55.61K | 0.130

具体优化教程参考这位大佬:How I’m using Jekyll in 2017 - Made Mistakes

想要加快编译只有一种方法:jekyll serve --incremental,可以增量编译。

当你修改一个文件后,它会自动排除没修改过的文件。

需要注意的是,增量编译仍然是实验性功能,也就是说有bug。我就遇到了几次修改文件后结果网页不显示修改后的结果的情况,具体可以参考:Default Configuration Jekyll • Simple, blog-aware, static sites


另一个增快编译速度的方法是升级jekyll的版本,原先的gemfile中配置如下:

gem 'github-pages', group: :jekyll_plugins

其中github-pages包含的jekyll版本为3.8.5,而实际上最新版已经出到了4.0

替换文件为:

gem 'jekyll', '~> 4.0'
group :jekyll_plugins do
    gem "jekyll-feed"
    gem "jekyll-remote-theme"
    gem "jekyll-seo-tag"
    gem "jekyll-sitemap"
    gem 'jekyll-feed'
    gem 'jemoji'
  end

编译速度直线上升。

参考:How I reduced my Jekyll build time by 61% | Forestry.io


还有一点要提的是ruby在Windows上的jekyll非常慢,慢到不能忍受,关键是jekyll不能多核一起编译,所以不如直接放在linux上编译快。


如果过程中遇到报错:

  Liquid Exception: undefined method `map' for false:FalseClass Did you mean? tap in /_layouts/post.html
jekyll 3.8.5 | Error:  undefined method `map' for false:FalseClass
Did you mean?  tap

_site文件夹中生成的文件全删除,重新编译。

文档信息

Table of Contents