Merge commit 'cb39847dee488c373dd5bc2a3706385342a59355'

This commit is contained in:
Bjørn Erik Pedersen
2020-08-14 18:31:40 +02:00
15 changed files with 34 additions and 29 deletions

View File

@@ -50,3 +50,15 @@ The example above can therefore also be written as follows:
{{ $style := resources.Get "sass/main.scss" | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
```
### Caching
Hugo Pipes invocations are cached based on the entire _pipe chain_.
An example of a pipe chain is:
```go-html-template
{{ $mainJs := resources.Get "js/main.js" | js.Build "main.js" | minify | fingerprint }}
```
The pipe chain is only invoked the first time it is encountered in a site build, and results are otherwise loaded from cache. As such, Hugo Pipes can be used in templates which are executed thousands or millions of times without negatively impacting the build performance.