Moved from GitHub ristretto/107
Posted by karlmcguire:
As brought up in the performance Gopher channel, since we’re using interface{} for keys, this call to keyToHash is probably letting the interface escape to heap.
Solution: switch over to string or []byte for public API calls.