Adjusting the number of go routines to build the pages in to 4*GOMAXPROCS (from 2) for faster rendering.

This commit is contained in:
spf13 2014-08-30 01:15:20 -04:00
parent 47c91a4ca2
commit 242d6b4e6b

View file

@ -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)
}