Remove the goroutines from the shortcode lexer
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 7 Dec 2017 20:46:46 +0000 (21:46 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 7 Dec 2017 22:08:25 +0000 (23:08 +0100)
commit243694102a60da2fb1050020f68384539f9f9ef5
tree09bc34367fae5a59c4851fdb4e4e31736bc58285
parent31535261610b34131c68ec760db8b29cac1548dd
Remove the goroutines from the shortcode lexer

It was clever, but storing the items in a slice is faster -- and it gives room to more goroutines in other places.

```bash
benchmark                     old ns/op     new ns/op     delta
BenchmarkShortcodeLexer-4     180173        79614         -55.81%

benchmark                     old allocs     new allocs     delta
BenchmarkShortcodeLexer-4     309            328            +6.15%

benchmark                     old bytes     new bytes     delta
BenchmarkShortcodeLexer-4     35456         47008         +32.58%
```
hugolib/shortcodeparser.go