Use a hash for the cache key, to fix 'file name too long' errors when retreiving from long urls
Fixes #3690
package data
import (
+ "crypto/md5"
+ "encoding/hex"
"errors"
- "net/url"
"sync"
"github.com/gohugoio/hugo/config"
// getCacheFileID returns the cache ID for a string.
func getCacheFileID(cfg config.Provider, id string) string {
- return cfg.GetString("cacheDir") + url.QueryEscape(id)
+ hash := md5.Sum([]byte(id))
+ return cfg.GetString("cacheDir") + hex.EncodeToString(hash[:])
}
// getCache returns the content for an ID from the file cache or an error.