| CARVIEW |
haxl: A Haskell library for efficient, concurrent, and concise data access.
Haxl is a library and EDSL for efficient scheduling of concurrent data accesses with a concise applicative API.
To use Haxl, you need to implement one or more data sources, which provide the means for accessing remote data or other I/O that you want to perform using Haxl.
Haxl provides two top-level modules:
Data-source implementations import Haxl.Core,
Client code import your data sources and Haxl.Prelude, or some other client-level API that you provide.
[Skip to Readme]
Flags
Automatic Flags
| Name | Description | Default |
|---|---|---|
| bench | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- haxl-2.5.1.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.3.1.0, 0.4.0.0, 0.4.0.1, 0.4.0.2, 0.5.0.0, 0.5.1.0, 2.0.0.0, 2.0.1.0, 2.0.1.1, 2.1.2.0, 2.3.0.0, 2.4.0.0, 2.5.1.0, 2.5.1.1 |
|---|---|
| Change log | changelog.md |
| Dependencies | aeson (>=0.6 && <2.3), base (>=4.10 && <5), binary (>=0.7 && <0.10), bytestring (>=0.9 && <0.13), containers (>=0.5 && <0.8), deepseq, exceptions (>=0.8 && <0.11), filepath (>=1.3 && <1.6), ghc-prim, hashable (>=1.2 && <1.6), hashtables (>=1.2.3.1), haxl, optparse-applicative, pretty (>=1.1 && <1.2), stm (>=2.4 && <2.6), text (>=1.2.1.0 && <1.3 || >=2 && <2.2), time (>=1.4 && <1.13), transformers, unordered-containers (>=0.2 && <0.3), vector (>=0.10 && <0.14) [details] |
| Tested with | ghc ==8.4.4, ghc ==8.6.5, ghc ==8.8.4, ghc ==8.10.7, ghc ==9.0.2, ghc ==9.2.8, ghc ==9.4.8, ghc ==9.6.6, ghc ==9.8.2, ghc ==9.10.1 |
| License | BSD-3-Clause |
| Copyright | Copyright (c) 2014-present, Facebook, Inc. |
| Author | Facebook, Inc. |
| Maintainer | The Haxl Team <haxl-team@fb.com> |
| Uploaded | by SimonMarlow at 2025-04-08T14:18:27Z |
| Category | Concurrency |
| Home page | https://github.com/facebook/Haxl |
| Bug tracker | https://github.com/facebook/Haxl/issues |
| Distributions | NixOS:2.5.1.1 |
| Reverse Dependencies | 11 direct, 0 indirect [details] |
| Executables | cachebench, monadbench |
| Downloads | 14105 total (72 in the last 30 days) |
| Rating | 2.25 (votes: 2) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2025-04-08 [all 1 reports] |
Readme for haxl-2.5.1.1
[back to package description]
Haxl
Haxl is a Haskell library that simplifies access to remote data, such as databases or web-based services. Haxl can automatically
- batch multiple requests to the same data source,
- request data from multiple data sources concurrently,
- cache previous requests,
- memoize computations.
Having all this handled for you behind the scenes means that your data-fetching code can be much cleaner and clearer than it would otherwise be if it had to worry about optimizing data-fetching. We'll give some examples of how this works in the pages linked below.
There are two Haskell packages here:
haxl: The core Haxl frameworkhaxl-facebook(in https://github.com/facebook/Haxl/tree/master/example/facebook): An (incomplete) example data source for accessing the Facebook Graph API
To use Haxl in your own application, you will likely need to build one or more data sources: the thin layer between Haxl and the data that you want to fetch, be it a database, a web API, a cloud service, or whatever.
There is a generic datasource in "Haxl.DataSource.ConcurrentIO" that can be used for performing arbitrary IO operations concurrently, given a bit of boilerplate to define the IO operations you want to perform.
The haxl-facebook package shows how we might build a Haxl data
source based on the existing fb package for talking to the Facebook
Graph API.
Where to go next?
-
The Story of Haxl explains how Haxl came about at Facebook, and discusses our particular use case.
-
An example Facebook data source walks through building an example data source that queries the Facebook Graph API concurrently.
-
Fun with Haxl (part 1) Walks through using Haxl from scratch for a simple SQLite-backed blog engine.
-
The N+1 Selects Problem explains how Haxl can address a common performance problem with SQL queries by automatically batching multiple queries into a single query, without the programmer having to specify this behavior.
-
Haxl Documentation on Hackage.
-
There is no Fork: An Abstraction for Efficient, Concurrent, and Concise Data Access, our paper on Haxl, accepted for publication at ICFP'14.
Contributing
We welcome contributions! See CONTRIBUTING for details on how to get started, and our Code of Conduct.
License
Haxl uses the BSD 3-clause License, as found in the LICENSE file.