hashtables: Mutable hash tables in the ST monad
This package provides a couple of different implementations of mutable hash tables in the ST monad, as well as a typeclass abstracting their common operations, and a set of wrappers to use the hash tables in the IO monad.
QUICK START: documentation for the hash table operations is provided in the Data.HashTable.Class module, and the IO wrappers (which most users will probably prefer) are located in the Data.HashTable.IO module.
This package currently contains three hash table implementations:
Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing" as introduced by Pagh and Rodler in 2001 (see https://en.wikipedia.org/wiki/Cuckoo_hashing). Cuckoo hashing has worst-case O(1) lookups and can reach a high "load factor", in which the table can perform acceptably well even when approaching 90% full. Randomized testing shows this implementation of cuckoo hashing to be slightly faster on insert and slightly slower on lookup than Data.HashTable.ST.Basic, while being more space efficient by about a half-word per key-value mapping. Cuckoo hashing, like the basic hash table implementation using linear probing, can suffer from long delays when the table is resized.
Data.HashTable.ST.Basic contains a basic open-addressing hash table using linear probing as the collision strategy. On a pure speed basis it should currently be the fastest available Haskell hash table implementation for lookups, although it has a higher memory overhead than the other tables and can suffer from long delays when the table is resized because all of the elements in the table need to be rehashed.
Data.HashTable.ST.Linear contains a linear hash table (see https://en.wikipedia.org/wiki/Linear_hashing), which trades some insert and lookup performance for higher space efficiency and much shorter delays when expanding the table. In most cases, benchmarks show this table to be currently slightly faster than
Data.HashTable
from the Haskell base library.
It is recommended to create a concrete type alias in your code when using this package, i.e.:
import qualified Data.HashTable.IO as H type HashTable k v = H.BasicHashTable k v foo :: IO (HashTable Int Int) foo = do ht <- H.new H.insert ht 1 1 return ht
Firstly, this makes it easy to switch to a different hash table implementation, and secondly, using a concrete type rather than leaving your functions abstract in the HashTable class should allow GHC to optimize away the typeclass dictionaries.
This package accepts a couple of different cabal flags:
unsafe-tricks
, default ON. If this flag is enabled, we use some unsafe GHC-specific tricks to save indirections (namelyunsafeCoerce#
andreallyUnsafePtrEquality#
. These techniques rely on assumptions about the behaviour of the GHC runtime system and, although they've been tested and should be safe under normal conditions, are slightly dangerous. Caveat emptor. In particular, these techniques are incompatible with HPC code coverage reports.sse42
, default OFF. If this flag is enabled, we use some SSE 4.2 instructions (see https://en.wikipedia.org/wiki/SSE4, first available on Intel Core 2 processors) to speed up cache-line searches for cuckoo hashing.bounds-checking
, default OFF. If this flag is enabled, array accesses are bounds-checked.debug
, default OFF. If turned on, we'll rudely spew debug output to stdout.portable
, default OFF. If this flag is enabled, we use only pure Haskell code and try not to use unportable GHC extensions. Turning this flag on forcesunsafe-tricks
andsse42
OFF.
Please send bug reports to https://github.com/gregorycollins/hashtables/issues.
[Skip to Readme]
Modules
[Index] [Quick Jump]
Flags
Manual Flags
Name | Description | Default |
---|---|---|
debug | if on, spew debugging output to stdout | Disabled |
detailed-profiling | add detailed profiling information to profiled build-depends | Disabled |
Automatic Flags
Name | Description | Default |
---|---|---|
unsafe-tricks | turn on unsafe GHC tricks | Enabled |
bounds-checking | if on, use bounds-checking array accesses | Disabled |
sse42 | if on, use SSE 4.2 extensions to search cache lines very efficiently. The portable flag forces this off. | Disabled |
portable | if on, use only pure Haskell code and no GHC extensions. | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- hashtables-1.3.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
Versions [RSS] | 1.0.0.0, 1.0.1.0, 1.0.1.1, 1.0.1.2, 1.0.1.3, 1.0.1.4, 1.0.1.5, 1.0.1.6, 1.0.1.7, 1.0.1.8, 1.1.0.0, 1.1.0.1, 1.1.0.2, 1.1.2.0, 1.1.2.1, 1.2.0.0, 1.2.0.1, 1.2.0.2, 1.2.1.0, 1.2.1.1, 1.2.2.0, 1.2.2.1, 1.2.3.0, 1.2.3.1, 1.2.3.2, 1.2.3.3, 1.2.3.4, 1.2.4.0, 1.2.4.1, 1.2.4.2, 1.3, 1.3.1 |
---|---|
Change log | changelog.md |
Dependencies | base (>=4.7 && <5), ghc-prim, hashable (>=1.4 && <1.6), primitive, vector (>=0.7 && <0.14) [details] |
Tested with | ghc ==7.8.4, ghc ==7.10.3, ghc ==8.0.2, ghc ==8.2.2, ghc ==8.4.4, ghc ==8.6.5, ghc ==8.8.4, ghc ==8.10.7, ghc ==9.0.1, ghc ==9.2.4, ghc ==9.4.2 |
License | BSD-3-Clause |
Copyright | (c) 2011-2014, Google, Inc., 2016-present contributors |
Author | Gregory Collins |
Maintainer | [email protected], [email protected], [email protected] |
Revised | Revision 1 made by ErikDeCastroLopo at 2024-11-17T20:12:12Z |
Category | Data |
Home page | https://github.com/gregorycollins/hashtables |
Source repo | head: git clone https://github.com/gregorycollins/hashtables.git |
Uploaded | by ErikDeCastroLopo at 2022-10-02T08:15:35Z |
Distributions | Arch:1.3.1, Debian:1.2.3.4, Fedora:1.3.1, FreeBSD:1.2.0.2, LTSHaskell:1.3.1, NixOS:1.3.1, Stackage:1.3.1, openSUSE:1.3.1 |
Reverse Dependencies | 85 direct, 3708 indirect [details] |
Downloads | 101457 total (383 in the last 30 days) |
Rating | 2.5 (votes: 4) [estimated by Bayesian average] |
Your Rating | |
Status | Docs uploaded by user Build status unknown [no reports yet] |