686c7b6ebci(Netlify): specify `HUGO_VERSION` environment variable onceda99a356ffix: change heading levele57da3f00Update taxonomy methods746172490Update description of rendered breadcrumb navigation6bc52fd40Clarify termdab07dcb0Fix typoe50fa452aFix typo6c1ea83c2Update template overview pagea5dc97845Clarify the append functiona135e52a0Update GitHub hosting instructionsa51bf9f4fUpdate sections pageed35fc6c4Update archetypes and glossary1a4522b3eFormat examplesa70f20094Use "hugo new content" to create content673846ff9Remove commentb7febf0c5Fix link6f6fe2133Miscellaneous edits99227dd18Remove lookup order table from output formats pagebc8870657tools/editors: Add Prettier Plugin for Go Templates157b169ebUpdate docs.yaml1c8f514e0Update cond functione5f1f8113Add assumptions to taxonomy and term template lookup order examples475b406e2Update postprocess2d6cb8dfcglossary: Update content type03b514bacAdd descriptions to template lookup order example sections06678f919glossary: Fix broken link4cd505612Simplify news listingfadb980dbUpdate glossary of terms491bacd78Change order of example sections for template lookup order04b8f39ecCreate glossary of terms12e896bc0Remove reference to asciidoctor-rouge extension055f7bb37Insert missing words8cd6ac387Miscellaneous edits2cbe17f41Update configuration.md529615373Update data-templates.md853154e65Update theme45f08627aresources.getRemote: Fix definition list29a51dac1Update docshelper3bdfe88c6Remove link to gitter from site footercacd0e461Use "map" instead of "dictionary"704dd5da6Document the transform.Remarshal template functione8d744951Populate news section via GitHub releases API3ff1118c7Replace docs.json with docs.yaml7726bbcacUse docs.json to generate default config throughout the site57dca93dfUse docs.json to generate default config for related content74d5082c7Add some .RenderShortcodes docscf5ab5062netlify: Hugo 0.117.0420f7aa69Add all config to docshelper.json git-subtree-dir: docs git-subtree-split:686c7b6eb1
1.9 KiB
title, description, categories, menu, keywords, signature, relatedfuncs
| title | description | categories | menu | keywords | signature | relatedfuncs | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| partialCached | Allows for caching of partials that do not need to be re-rendered on every invocation. |
|
|
|
|
The partialCached template function can offer significant performance gains for complex templates that don't need to be re-rendered on every invocation.
Note: Each Site (or language) has its own partialCached cache, so each site will execute a partial once.
Note: Hugo renders pages in parallel, and will render the partial more than once with concurrent calls to the partialCached function. After Hugo caches the rendered partial, new pages entering the build pipeline will use the cached result.
Here is the simplest usage:
{{ partialCached "footer.html" . }}
You can also pass additional arguments to partialCached to create variants of the cached partial. For example, if you have a complex partial that should be identical when rendered for pages within the same section, you could use a variant based upon section so that the partial is only rendered once per section:
{{< code file="partial-cached-example.html" >}} {{ partialCached "footer.html" . .Section }} {{< /code >}}
If you need to pass additional arguments to create unique variants, you can pass as many variant arguments as you need:
{{ partialCached "footer.html" . .Params.country .Params.province }}
Note that the variant arguments are not made available to the underlying partial template. They are only use to create a unique cache key. Since Hugo 0.61.0 you can use any object as cache key(s), not just strings.
See also The Full Partial Series Part 1: Caching!.