memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit 7f991a45394529a079fd2cd67b9feedc40578ff9
parent a1be544eccfec15ba7dac698e014f73d7a32bd5c
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Tue, 26 Mar 2019 21:36:02 +0100

Add interesting article on hash table performance

Gotta find a way to tag those before there's too many of them.

Diffstat:
Mtechnical/blog-roll.md | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/technical/blog-roll.md b/technical/blog-roll.md @@ -78,3 +78,14 @@ Some recurring topics I enjoy reading about: [Render Multimedia in Pure C]: https://nullprogram.com/blog/2017/11/03/ [Some Performance Advantages of Lexical Scope]: https://nullprogram.com/blog/2016/12/22/ [What's in an Emacs Lambda]: https://nullprogram.com/blog/2017/12/14/ + +# [Et tu, Cthulhu] + +[A hash table re-hash] +: A benchmark of hash tables that manages to succinctly explain + common performance issues and tradeoffs with this data structure, + to show results across a wide range of implementations, and to + provide very understandable interepretations for those results. + +[Et tu, Cthulhu]: https://hpjansson.org/blag/ +[A hash table re-hash]: https://hpjansson.org/blag/2018/07/24/a-hash-table-re-hash/