Avoid splitting words for summary
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 16 Aug 2016 20:50:15 +0000 (22:50 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 14 Sep 2016 08:50:55 +0000 (10:50 +0200)
commitbcd434794a28ff75a6e6504c6c3bada554ba88ce
tree7ebb624045cdd6236cfdfd0f3620bb5bb8bf88d2
parent74ffb45fbe2c121881b2386fc3210f8b1c6bd952
Avoid splitting words for summary

For people using autogenerated summaries, this is one of the hot spots in the memory department.

We don't need to split al the content into words to do proper summary truncation.

This is obviously more effective:

```
BenchmarkTestTruncateWordsToWholeSentence-4            300000          4720 ns/op           0 B/op           0 allocs/op
BenchmarkTestTruncateWordsToWholeSentenceOld-4         100000         17699 ns/op        3072 B/op           3 allocs/op
```
helpers/content.go
helpers/content_test.go
hugolib/page.go