Hacker News
- Minimal Perfect Hash-Tables in Common Lisp http://lisp-univ-etc.blogspot.com/2018/01/minimal-perfect-hash-tables-in-common.html 13 comments
- Modern perfect hashing for strings http://0x80.pl/notesen/2023-04-30-lookup-in-strings.html 14 comments
- Fast Perfect Hashing http://www.jandrewrogers.com/2019/02/12/fast-perfect-hashing/ 41 comments
- String Matching Based on Compile Time Perfect Hashing in Zig https://andrewkelley.me/post/string-matching-comptime-perfect-hashing-zig.html 4 comments
- Perfect Hashes and faster than memcmp http://blogs.perl.org/users/rurban/2014/08/perfect-hashes-and-faster-than-memcmp.html 18 comments
- Minimal Perfect Hashing http://stevehanov.ca/blog/index.php?id=119 10 comments
- Base52 url shortener perfect hash function in C http://lambdajones.com/b52 11 comments
- An optimal algorithm for generating minimal perfect hash functions [pdf] http://cmph.sourceforge.net/papers/chm92.pdf 3 comments
- Throw away the keys: Easy, Minimal Perfect Hashing http://stevehanov.ca/blog/?id=119 5 comments
- Use perfect hashing, instead of binary search, for keyword lookup https://www.postgresql.org/message-id/flat/E1ghOVt-0007os-2V%40gemulon.postgresql.org 111 comments
- A Minimal Perfect Hash Function Library by Thomas Müller (Author of H2) https://github.com/thomasmueller/minperf 2 comments
Lobsters
- Faster than Rust and C++: the PERFECT hash table https://www.youtube.com/watch?v=DMQ_HcNSOAI 5 comments c++ , performance , video
- String Matching based on Compile Time Perfect Hashing in Zig https://andrewkelley.me/post/string-matching-comptime-perfect-hashing-zig.html 6 comments programming , show , zig
- simple-hash: e.g. SimpleHash.new(a: { b: 2 }).a.b (as a gem, contributions are welcome it's far from perfect :) ) https://github.com/simple-updates/simple-hash 4 comments ruby
- Is 'value-pooled perfect hashing' a thing? (allowing collisions for same-value keys) https://github.com/dairin0d/value-pooled-perfect-hashing 9 comments programming
- Perfect hashing benchmark (lookup time, compilation time, binary size) https://boost-ext.github.io/mph/perfect_hashing 4 comments cpp
- Optimizing the `pext` perfect hash function https://xoranth.net/verb-parse/ 4 comments cpp
- Faster than Rust and C++: the PERFECT hash table https://youtu.be/DMQ_HcNSOAI 62 comments rust
- zini: Minimal perfect hash function for Zig https://github.com/judofyr/zini 3 comments zig
- rust-phf: the perfect hash function https://simplabs.com/blog/2022/06/23/the-perfect-hash-function/ 23 comments rust
- Poifect: Perfect Hashing Library https://www.reddit.com/r/cpp/comments/n6kli9/poifect_perfect_hashing_library/ 14 comments cpp
- rkyv 0.3: Unarchiving and perfect hashing https://www.reddit.com/r/rust/comments/kxfbyl/rkyv_03_unarchiving_and_perfect_hashing/ 34 comments rust
- constexpr perfect hash functions with gperf https://www.reddit.com/r/cpp/comments/hife4d/constexpr_perfect_hash_functions_with_gperf/ 7 comments cpp
- Fast Perfect Hashing http://www.jandrewrogers.com/2019/02/12/fast-perfect-hashing/ 3 comments programming
- String Matching based on Compile Time Perfect Hashing in Zig https://andrewkelley.me/post/string-matching-comptime-perfect-hashing-zig.html 12 comments programming
- Advent #3 - Minimal Perfect Hash Functions https://blog.gopheracademy.com/advent-2017/mphf/ 7 comments golang
- A Collision Too-Perfect - Cheeky executables, both MD5 and SHA1 hashes are equal , different run output [CHALLENGE WRITEUP] https://hackernoon.com/a-collision-too-perfect-279a47fb5d42 11 comments netsec
- D programming tool - Perfect hash set generator that writes D code https://github.com/bbasile/isitthere 4 comments d_language
- [Java] Perfect Hash functions https://www.reddit.com/r/learnprogramming/comments/4hxyj3/java_perfect_hash_functions/ 8 comments learnprogramming
- Resources about perfect hash functions http://cmph.sourceforge.net/ 4 comments compsci
- Minimal Perfect Hashing for Go https://github.com/alecthomas/mph 2 comments golang
- Perfect Spacial Hashing - empty pixels are free (2006) http://research.microsoft.com/en-us/um/people/hoppe/proj/perfecthash/ 20 comments programming
- Faster HTTP verb parsing using `pext` and perfect hashing. https://xoranth.net/verb-parse/ 6 comments cpp
- Hash, displace, and compress: Perfect hashing with Java https://www.andreinc.net/2022/03/15/perfect-hashing-with-java 8 comments java
- Perfect Hashes explained in literate Java http://remis-thoughts.blogspot.co.uk/2012/03/perfect-hashes-in-java-given-set-of-m.html 18 comments programming
- Distributed Perfect Hashing for Very Large Key Sets [pdf] http://homepages.dcc.ufmg.br/~nivio/papers/infoscale08.pdf 17 comments programming
- The C Minimal Perfect Hashing Library http://cmph.sourceforge.net/ 3 comments programming
- Minimal Perfect Hash and other optimization tricks we do with immutable data structures https://qdrant.tech/articles/immutable-data-structures/ 2 comments rust
- Use gperf for efficient C/C++ command line processing - GNU perfect (gperf) hash function generator makes short work of complex input strings http://www.ibm.com/developerworks/linux/library/l-gperf.html?ca=drs- 8 comments programming
- Dynamic Perfect Hashing: A hash table with constant time lookup in the worst case, and O(n) space. http://en.wikipedia.org/wiki/dynamic_perfect_hashing 23 comments programming