• M
    7126277: Alternative String hashing implementation · cb49b590
    mduigou 提交于
    Summary: All of the hashing based Map implementations: HashMap, Hashtable, LinkedHashMap, WeakHashMap and ConcurrentHashMap are modified to use an enhanced hashing algorithm for string keys when the capacity of the hash table has ever grown beyond 512 entries. The enhanced hashing implementation uses the murmur3 hashing algorithm along with random hash seeds and index masks. These enhancements mitigate cases where colliding String hash values could result in a performance bottleneck.
    Reviewed-by: alanb, forax, dl
    cb49b590
HashCode.java 1.4 KB