tpl: Do not write to cache when ignoring cache
authorRobert Basic <robertbasic.com@gmail.com>
Sun, 10 Apr 2016 10:11:18 +0000 (12:11 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 14 Apr 2016 08:48:26 +0000 (10:48 +0200)
Fixes #2067
Closes #2069

commands/hugo.go
docs/content/extras/datadrivencontent.md
docs/content/overview/usage.md
tpl/template_resources.go
tpl/template_resources_test.go

index ce7970afc514375e62f4569a8da52409f79c0b39..7cb1a4fc365329361b7e8fbe129d83df5291e8ef 100644 (file)
@@ -222,7 +222,7 @@ func initHugoBuildCommonFlags(cmd *cobra.Command) {
        cmd.Flags().StringVarP(&contentDir, "contentDir", "c", "", "filesystem path to content directory")
        cmd.Flags().StringVarP(&layoutDir, "layoutDir", "l", "", "filesystem path to layout directory")
        cmd.Flags().StringVarP(&cacheDir, "cacheDir", "", "", "filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/")
-       cmd.Flags().BoolVarP(&ignoreCache, "ignoreCache", "", false, "Ignores the cache directory for reading but still writes to it")
+       cmd.Flags().BoolVarP(&ignoreCache, "ignoreCache", "", false, "Ignores the cache directory")
        cmd.Flags().StringVarP(&destination, "destination", "d", "", "filesystem path to write files to")
        cmd.Flags().StringVarP(&theme, "theme", "t", "", "theme to use (located in /themes/THEMENAME/)")
        cmd.Flags().BoolVar(&uglyURLs, "uglyURLs", false, "if true, use /filename.html instead of /filename/")
index 4a419c84900f02cc9723ced1baeb38e557949b40..a1cef524c755f890cab1232838c405594fc51c15 100644 (file)
@@ -103,9 +103,8 @@ temporary directory.
 With the command-line flag `--cacheDir`, you can specify any folder on
 your system as a caching directory.
 
-If you don't like caching at all, you can fully disable to read from the
-cache with the command line flag `--ignoreCache`. However, Hugo will always
-write, on each build of the site, to the cache folder (silent backup).
+If you don't like caching at all, you can fully disable caching with the
+command line flag `--ignoreCache`.
 
 ### Authentication when using REST URLs
 
index c570a7b10290e1f5f4c589e72f38777af9c08453..3fd74db55a9054ecee9d22c787b517bcc75b78cd 100644 (file)
@@ -48,7 +48,7 @@ Flags:
       --disableSitemap=false: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
   -h, --help=false: help for hugo
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
+      --ignoreCache=false: Ignores the cache directory
       --log=false: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
       --noTimes=false: Don't sync modification time of files
index 76a83a87f31ccf688f3ca3a22b42b01f050a2bb2..07451734d5350ca9c9a48149fbe14c874ab6ed56 100644 (file)
@@ -92,7 +92,10 @@ func resGetCache(id string, fs afero.Fs, ignoreCache bool) ([]byte, error) {
 }
 
 // resWriteCache writes bytes to an ID into the file cache
-func resWriteCache(id string, c []byte, fs afero.Fs) error {
+func resWriteCache(id string, c []byte, fs afero.Fs, ignoreCache bool) error {
+       if ignoreCache {
+               return nil
+       }
        fID := getCacheFileID(id)
        f, err := fs.Create(fID)
        if err != nil {
@@ -147,7 +150,7 @@ func resGetRemote(url string, fs afero.Fs, hc *http.Client) ([]byte, error) {
        if err != nil {
                return nil, err
        }
-       err = resWriteCache(url, c, fs)
+       err = resWriteCache(url, c, fs, viper.GetBool("IgnoreCache"))
        if err != nil {
                return nil, err
        }
index d091595b03acdbeeee2c90d2922de2f9316ebb24..909edc5d5487498580e75b387842da75c0cc2959 100644 (file)
@@ -58,7 +58,7 @@ func TestScpCache(t *testing.T) {
                        t.Errorf("There is content where there should not be anything: %s", string(c))
                }
 
-               err = resWriteCache(test.path, test.content, fs)
+               err = resWriteCache(test.path, test.content, fs, test.ignore)
                if err != nil {
                        t.Errorf("Error writing cache: %s", err)
                }