mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-19 21:21:39 +02: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