mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00: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:
@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user