symbolize: Efficient global Symbol table, with Garbage Collection.
Symbols, also known as Atoms or Interned Strings, are a common technique to reduce memory usage and improve performance when using many small strings:
A Symbol represents a string (any Textual
, so String, Text, ShortText, ByteString, ShortByteString, etc.)
Just like ShortText
, ShortByteString
and ByteArray
, a Symbol
has an optimized memory representation,
directly wrapping a primitive ByteArray#
.
Furthermore, a global symbol table keeps track of which values currently exist, ensuring we always deduplicate symbols. This therefore allows us to:
Check for equality between symbols in constant-time (using pointer equality)
Calculate the hash in constant-time (using
StableName
)Keep the memory footprint of repeatedly-seen strings low.
This is very useful if you're frequently comparing strings
and the same strings might come up many times.
It also makes Symbol a great candidate for a key in e.g. a HashMap
or HashSet
.
The global symbol table is implemented using weak pointers, which means that unused symbols will be garbage collected. As such, you do not need to be concerned about memory leaks (as is the case with many other symbol table implementations).
Please see the full README below or on GitHub at https://github.com/Qqwy/haskell-symbolize#readme
[Skip to Readme]
Downloads
- symbolize-1.0.3.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 1.0.0.0, 1.0.0.1, 1.0.0.2, 1.0.0.3, 1.0.0.4, 1.0.1.0, 1.0.2.0, 1.0.2.1, 1.0.2.2, 1.0.2.3, 1.0.2.4, 1.0.3.0, 1.0.3.1 |
---|---|
Change log | CHANGELOG.md |
Dependencies | base (>=4.7 && <5), binary (>=0.8.9 && <0.9), bytestring (>=0.11.0 && <0.13), deepseq (>=1.4.0 && <1.6), hashable (>=1.4.0 && <1.6), random (>=1.2 && <2), text (>=2.0 && <2.2), text-short (>=0.1.0 && <0.2), vector (>=0.12.0 && <0.14), vector-hashtables (>=0.1 && <0.2) [details] |
Tested with | ghc ==9.4.8 || ==9.6.6 || ==9.8.4 || ==9.10.1 |
License | BSD-3-Clause |
Copyright | 2023-2025 Marten Wijnja |
Author | Qqwy / Marten |
Maintainer | qqwy@gmx.com |
Category | Data, Data Structures |
Home page | https://github.com/Qqwy/haskell-symbolize#readme |
Bug tracker | https://github.com/Qqwy/haskell-symbolize/issues |
Source repo | head: git clone https://github.com/Qqwy/haskell-symbolize |
Uploaded | by qqwy at 2025-03-02T01:26:47Z |
Distributions | NixOS:0.1.0.3, Stackage:1.0.3.1 |
Downloads | 350 total (58 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2025-03-02 [all 1 reports] |