discord/fastglobal
Fast no copy globals for Elixir & Erlang. observed · 2026-08-28
Health v2 · maintenance only
32/100
- Activity 0
- Release rhythm 35
- Longevity 100
Flags: no_releases
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 3486
- days_rel: n/a
- days_push: 1273
- n_releases_24m: 0
Adoption not part of the score
1181 stars · 85 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
FastGlobal is an Elixir/Erlang library that provides fast, copy-free access to large shared global data by leveraging the Erlang VM's constant pools via runtime module compilation. It is a modernized Elixir take on mochiglobal, optimized for large, infrequently changing data read by many processes.
Use cases
- store large lookup tables accessible by thousands of BEAM processes without copying
- replace ETS reads that get slower as data grows
- share infrequently changing configuration across an Erlang cluster of processes
- avoid overloading a single process holding shared state
- get near-constant-time global reads in Elixir applications
When to choose
- you have large, rarely changing data read frequently by many processes on the BEAM
- ETS read costs or process-based state are bottlenecks
- you want a drop-in global map API in Elixir
When to avoid
- your data changes frequently, since puts and module purges are expensive
- your dataset is small enough that ETS is fast enough
- your system has many processes, making module purge compile times slow
- you frequently look up missing keys, which triggers costly try/catch
Facets
library · maturity maintenance
caching concurrency developer-tools developer-tools performance backend elixir windows elixir erlang constant-pool shared-state mochiglobal hex-package linux macos
1 source
- readme: https://github.com/discord/fastglobal · fetched 2026-08-28 · 168a93b622f6
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| discord/fastglobal | main | 32 |
For agents
markdown · JSON · MCP: product_card(name="discord/fastglobal")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem