HPPC v0.9.0.RC1 Release Notes

Release Date: 2020-09-08 // over 3 years ago
  • ๐Ÿš€ Release candidate preview for 0.9.0.

    ๐Ÿ†• New features and API changes

    โšก๏ธ HPPC-179: Update java template parser to support Java 8.

    HPPC-186: A different strategy has been implemented for collision avalanche avoidance. This
    results in removal of Scatter* maps and sets and their unification with their Hash*
    counterparts.
    This change should not affect any existing code unless it relied on static, specific
    ordering of keys. A side effect of this change is that key/value enumerators will return
    a different ordering of their container's values on each invocation. If your code relies
    on the order of values in associative arrays, it must order them after they are retrieved.
    (Bruno Roustant).

    HPPC-176: A new set of associative containers implementing Worm Hashing has been added.
    This strategy is appropriate for a medium sized maps and sets (less than 2M entries).
    It takes more time to put entries in the map because it maintains chains of entries having
    the same hash. Then the lookup speed is fast even if the map is heavy loaded or hashes are
    clustered. On average it takes slightly less memory than KTypeVTypeHashMap: even though
    it allocates more data structures, the reasonable load factor is higher (it varies around 80%)
    so containers enlarge later.
    (Bruno Roustant, Aleksandr Danilin).

    ๐Ÿ‘Œ Improvements

    HPPC-183: Simplify IndirectSort comparator to use IntBinaryOperator.

    ๐Ÿ‘ท HPPC-177: Modernize the build system to gradle and make it work with IntelliJ.

    HPPC-184: Use closures where possible to make the resulting JAR smaller.

    ๐Ÿ› Bugs

    • HPPC-187: ObjectIdentityHashSet redistributes keys according to key.hashCode rather than object identity's hash code.
      (Bruno Roustant).

Previous changes from v0.8.2

  • ๐Ÿš€ This release adds utility methods for estimating allocated and used memory.

    • HPPC-175: Method estimating memory usage (Haoyu Zhai)

    ๐Ÿš€ Full issue list