mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-15 16:09:41 -04:00
hugolib: Add slightly more realistic tag distribution to benchmark
This commit is contained in:
parent
8930e259d7
commit
ce624cc7d3
@ -131,8 +131,10 @@ category = "categories"
|
||||
tags = make([]string, cfg.TagsPerPage)
|
||||
)
|
||||
|
||||
tagOffset := rand.Intn(10)
|
||||
|
||||
for i := 0; i < len(tags); i++ {
|
||||
tags[i] = fmt.Sprintf("Hugo %d", i)
|
||||
tags[i] = fmt.Sprintf("Hugo %d", i+tagOffset)
|
||||
}
|
||||
|
||||
tagsStr := "[]"
|
||||
|
Loading…
x
Reference in New Issue
Block a user