jekyll-include-cache

A Jekyll plugin to cache the rendering of Liquid includes


Keywords
caching, jekyll, jekyll-plugin
License
MIT
Install
gem install jekyll-include-cache -v 0.2.1

Documentation

Jekyll Include Cache

A Jekyll plugin to cache the rendering of Liquid includes

Build Status

What it does

If you have a computationally expensive include (such as a sidebar or navigation), Jekyll Include Cache renders the include once, and then reuses the output any time that includes is called with the same arguments, potentially speeding up your site's build significantly.

Usage

  1. Add the following to your site's Gemfile:
gem 'jekyll-include-cache'
  1. Add the following to your site's config file:
plugins:
  - jekyll-include-cache

💡 If you are using a Jekyll version less than 3.5.0, use the gems key instead of plugins.

  1. Replace {% include foo.html %} in your template with {% include_cached foo.html %}

One potential gotcha

For Jekyll Include Cache to work, you cannot rely on the page context to pass variables to your include (e.g., assign foo=bar or page.title). Instead, you must explicitly pass all variables to the include as arguments, and reference them within the include as include.foo (instead of page.foo or just foo).

Good

In your template:

{% include_cached shirt.html size=medium color=red %}

In your include:

Buy our {{ include.color }} shirt in {{ include.size }}!

Bad

In your template:

{% assign color=blue %}
{% include_cached shirt.html %}

In your include:

Buy our {{ color }} shirt in {{ page.size }}!