[ANN] vector-hashtables-0.1.0.1

Hello All,

We would like to announce the release of yet another implementation of efficient mutable hashtables in Haskell.

Thanks,
Andrey

2 Likes

This is great, I thought hashtables was often unnecessarily slow. I will try this out. It might be interesting to see if we can improve the k-nucleotide benchmark with this package.

2 Likes

I notice alter is not exported. Edit: opened a pull request

1 Like

Thanks, @jaror, for noticing. Edit: and thanks for PR. :slight_smile:

Naively replacing hashtables with vector-hashtables causes a slowdown from ~22 to ~55 seconds :frowning:

I will try figuring out what is going wrong.

Here’s my code: https://gist.github.com/noughtmare/4ae65499da7576bc54262e3bfe39953f

2 Likes