Fix data races in sorting and Reverse
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 20 Jul 2015 23:29:22 +0000 (01:29 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 23 Jul 2015 10:43:57 +0000 (12:43 +0200)
commita9c5133a77c8490fad59807f44348214c7f3c954
treead50140e0da152bc4e3aaec5edbf682e0feff417
parentea6ae769dc651c2a29e8fb3600fa8c10859f60dc
Fix data races in sorting and Reverse

The custom sort functions used from the templates had some subtle data race- and related issues,
especially when used in the single page template.

This commit fixes this by making copies and protect the read and writes with a RWMutex.

The results are cached (it will typically be invoked *number of pages* times with exactly the same data).

This is, not surprisingly, also faster:

```
benchmark                           old ns/op     new ns/op     delta
BenchmarkSortByWeightAndReverse     14228         491           -96.55%

benchmark                           old allocs     new allocs     delta
BenchmarkSortByWeightAndReverse     1              0              -100.00%

benchmark                           old bytes     new bytes     delta
BenchmarkSortByWeightAndReverse     32            0             -100.00%
```

Fixes #1293
hugolib/pageCache.go [new file with mode: 0644]
hugolib/pageCache_test.go [new file with mode: 0644]
hugolib/pageSort.go
hugolib/pageSort_test.go