This is a slight performance optimization with no functional effect.
See #5239
return &pageCache{m: make(map[string][]pageCacheEntry)}
}
+func (c *pageCache) clear() {
+ c.Lock()
+ defer c.Unlock()
+ c.m = make(map[string][]pageCacheEntry)
+}
+
// get/getP gets a Pages slice from the cache matching the given key and
// all the provided Pages slices.
// If none found in cache, a copy of the first slice is created.
}
func (s *Site) render(config *BuildCfg, outFormatIdx int) (err error) {
+ // Clear the global page cache.
+ spc.clear()
if outFormatIdx == 0 {
if err = s.preparePages(); err != nil {
s.expiredCount = 0
- spc = newPageCache()
-
for _, p := range s.rawAllPages {
p.subSections = Pages{}
p.parent = nil