ex-pool: Another fork of resource-pool, with a MonadIO and MonadCatch constraint

[ bsd3, data, library ] [ Propose Tags ]

A fork of 'resource-pool' using MonadIO and exceptions.

The library also contains a number of fixes and enhancements which are not yet included in a Hackage release of the original library. Apart from that, this library is a drop-in replacement for 'resource-pool', useful in cases where a more general monadic type is desirable.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.2, 0.2.1
Dependencies base (>=4 && <5), exceptions, hashable (>1.2), stm, time, transformers, vector [details]
License BSD-3-Clause
Copyright 2013 Kim Altintop, 2011 MailRank Inc.
Author Kim Altintop, Bryan O'Sullivan
Maintainer kim.altintop@gmail.com
Category Data
Home page https://github.com/kim/ex-pool
Bug tracker https://github.com/kim/ex-pool/issues
Source repo head: git clone https://github.com/kim/ex-pool.git
Uploaded by KimAltintop at 2013-11-13T12:05:13Z
Distributions NixOS:0.2.1
Reverse Dependencies 2 direct, 45 indirect [details]
Downloads 6141 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for ex-pool-0.1.0

[back to package description]

ex-pool

A fork of resource-pool providing a high-performance striped resource pooling implementation for Haskell.

The package is intended to be a drop-in replacement for the original version, for when the following properties seem useful:

  • Unlike the original implementation, this library enables actions to be run in MonadIO (instead of plain IO), and uses exceptions for exception handling.

  • Also, a number of yet-to-be-released enhancements and fixes to the original library are included (namely #11, #15, #16).

That is, if you don't need any of the above, use the original package :)

Contributing

Please report issues here, or, better yet, submit pull requests.

License

BSD3, see LICENSE file