From 242d6b4e6b44a327ce56c5276d040555ef146d91 Mon Sep 17 00:00:00 2001 From: spf13 Date: Sat, 30 Aug 2014 01:15:20 -0400 Subject: [PATCH] Adjusting the number of go routines to build the pages in to 4*GOMAXPROCS (from 2) for faster rendering. --- hugolib/site.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugolib/site.go b/hugolib/site.go index c0e0bb075..104322bfc 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -334,7 +334,7 @@ func (s *Site) CreatePages() error { wg := &sync.WaitGroup{} - for i := 0; i < procs*2; i++ { + for i := 0; i < procs*4; i++ { wg.Add(1) go pageRenderer(s, input, results, wg) }