Fix image cache eviction for sites with subdir in baseURL
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 29 Jul 2018 12:26:45 +0000 (14:26 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 29 Jul 2018 12:26:45 +0000 (14:26 +0200)
Fixes #5006

hugolib/page_collections.go
resource/image_cache.go

index d99857aec72dd833663c1415eb41fd1e1a10c0cb..2b2cfed0fb069728a9df4f230b327cc9874a765e 100644 (file)
@@ -322,7 +322,7 @@ func (c *PageCollections) clearResourceCacheForPage(page *Page) {
                first := page.Resources[0]
                dir := path.Dir(first.RelPermalink())
                dir = strings.TrimPrefix(dir, page.LanguagePrefix())
-               // This is done to keep the memory usage in check when doing live reloads.
+               dir = strings.TrimPrefix(dir, page.s.BaseURL.Path())
                page.s.ResourceSpec.DeleteCacheByPrefix(dir)
        }
 }
index 4fb45c17f00530cbd6f47e3a9bd58d5672b81243..e5149e7a28fa1af98aee692c46c14d47e232ac7c 100644 (file)
@@ -33,7 +33,7 @@ type imageCache struct {
 
 func (c *imageCache) isInCache(key string) bool {
        c.mu.RLock()
-       _, found := c.store[key]
+       _, found := c.store[c.normalizeKey(key)]
        c.mu.RUnlock()
        return found
 }
@@ -41,6 +41,7 @@ func (c *imageCache) isInCache(key string) bool {
 func (c *imageCache) deleteByPrefix(prefix string) {
        c.mu.Lock()
        defer c.mu.Unlock()
+       prefix = c.normalizeKey(prefix)
        for k := range c.store {
                if strings.HasPrefix(k, prefix) {
                        delete(c.store, k)
@@ -48,6 +49,16 @@ func (c *imageCache) deleteByPrefix(prefix string) {
        }
 }
 
+func (c *imageCache) normalizeKey(key string) string {
+       // It is a path with Unix style slashes and it always starts with a leading slash.
+       key = filepath.ToSlash(key)
+       if !strings.HasPrefix(key, "/") {
+               key = "/" + key
+       }
+
+       return key
+}
+
 func (c *imageCache) clear() {
        c.mu.Lock()
        defer c.mu.Unlock()