mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Adjusting the number of go routines to build the pages in to 4*GOMAXPROCS (from 2) for faster rendering.
This commit is contained in:
parent
47c91a4ca2
commit
242d6b4e6b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue