Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

RTS Hash table load factor seems very high
The load factor of a hash table is defined as the `elements in hash table / number of buckets`. Once the load factor is reached then the table is doubled in size. The default value is typically around 0.75, but the hash table in the RTS has a fixed load factor of 5. This number is just unusually high, it will lead to less memory being used but also common collisions. This ticket just notes the unusual choice made. cc @fendor
issue