hugolib: Add slightly more realistic tag distribution to benchmark

This commit is contained in:
Bjørn Erik Pedersen 2017-05-30 15:33:37 +03:00
parent 8930e259d7
commit ce624cc7d3

View file

@ -131,8 +131,10 @@ category = "categories"
tags = make([]string, cfg.TagsPerPage) tags = make([]string, cfg.TagsPerPage)
) )
tagOffset := rand.Intn(10)
for i := 0; i < len(tags); i++ { for i := 0; i < len(tags); i++ {
tags[i] = fmt.Sprintf("Hugo %d", i) tags[i] = fmt.Sprintf("Hugo %d", i+tagOffset)
} }
tagsStr := "[]" tagsStr := "[]"