hugo/tpl
Bjørn Erik Pedersen f7aeaa6129 Add a consolidated file cache
This commits reworks how file caching is performed in Hugo. Now there is only one way, and it can be configured.

This is the default configuration:

```toml
[caches]
[caches.getjson]
dir = ":cacheDir"
maxAge = -1
[caches.getcsv]
dir = ":cacheDir"
maxAge = -1
[caches.images]
dir = ":resourceDir/_gen"
maxAge = -1
[caches.assets]
dir = ":resourceDir/_gen"
maxAge = -1
```

You can override any of these cache setting in your own `config.toml`.

The placeholders explained:

`:cacheDir`: This is the value of the `cacheDir` config option if set (can also be set via OS env variable `HUGO_CACHEDIR`). It will fall back to `/opt/build/cache/hugo_cache/` on Netlify, or a `hugo_cache` directory below the OS temp dir for the others.
`:resourceDir`: This is the value of the `resourceDir` config option.

`maxAge` is the time in seconds before a cache entry will be evicted, -1 means forever and 0 effectively turns that particular cache off.

This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other CI vendors, please read their documentation. For an CircleCI example, see 6c3960a8f4/.circleci/config.yml

Fixes #5404
2018-11-13 14:19:42 +01:00
..
cast tpl: Fix the docshelper 2018-11-02 13:36:09 +01:00
collections tpl/collections: Properly handle pointer types in complement/symdiff 2018-11-07 09:29:13 +01:00
compare Properly handle -DEV suffix when comparing Hugo versions 2018-02-22 17:16:42 +01:00
crypto all: Update import paths to gohugoio/hugo 2017-06-13 18:42:45 +02:00
data Add a consolidated file cache 2018-11-13 14:19:42 +01:00
encoding Revert "tpl: Update Jsonify to return pretty-print output" 2018-11-02 19:03:48 +01:00
fmt commands: Show server error info in browser 2018-10-16 22:10:56 +02:00
images tpl/images: Close image file 2017-11-25 18:38:33 +01:00
inflect vendor: Fix Humanize for multi-byte runes 2017-11-28 21:16:01 +01:00
internal tpl: Fix test to pass with gccgo 2018-11-09 08:54:08 +01:00
lang tpl: Add a delimiter parameter to lang.NumFmt 2018-10-02 17:41:48 +03:00
math Add a newScratch template func 2018-07-06 17:51:38 +02:00
os Remove alias of os.Stat 2018-08-06 09:54:26 +02:00
partials commands: Show server error info in browser 2018-10-16 22:10:56 +02:00
path tpl/collections: Add collections.Append 2018-09-14 10:12:08 +02:00
resources tpl: Fix the docshelper 2018-11-02 13:36:09 +01:00
safe Run gofmt to get imports in line vs gohugoio/hugo 2017-06-13 19:12:10 +02:00
strings commands: Show server error info in browser 2018-10-16 22:10:56 +02:00
templates tpl/partials: Add templates.Exists 2018-07-31 13:28:15 +02:00
time tpl/time: Add time.Duration and time.ParseDuration template funcs 2017-09-09 09:43:00 +02:00
tplimpl Add file (line/col) info to ref/relref errors 2018-11-01 21:06:35 +01:00
transform Convert the rest to new page parser code paths 2018-10-22 20:46:14 +02:00
urls Add file (line/col) info to ref/relref errors 2018-11-01 21:06:35 +01:00
template.go Add file (line/col) info to ref/relref errors 2018-11-01 21:06:35 +01:00
template_test.go commands: Show server error info in browser 2018-10-16 22:10:56 +02:00