The auto-update package

[Tags:library, mit]

API docs and the README are available at http://www.stackage.org/package/auto-update.


[Skip to Readme]

Properties

Versions 0.1.0.0, 0.1.1.0, 0.1.1.1, 0.1.1.2, 0.1.1.3, 0.1.1.4, 0.1.1.5, 0.1.2, 0.1.2.1, 0.1.2.2, 0.1.3, 0.1.3.1, 0.1.4
Change log ChangeLog.md
Dependencies base (==4.*) [details]
License MIT
Author Michael Snoyman
Maintainer michael@snoyman.com
Category Control
Home page https://github.com/yesodweb/wai
Uploaded Mon May 9 05:43:47 UTC 2016 by MichaelSnoyman
Distributions Arch:0.1.4, Debian:0.1.3, FreeBSD:0.1.2.2, LTSHaskell:0.1.4, NixOS:0.1.4, Stackage:0.1.4, Tumbleweed:0.1.4
Downloads 40464 total (2848 in the last 30 days)
Votes
0 []
Status Docs uploaded by user
Build status unknown [no reports yet]

Modules

[Index]

Downloads

Maintainer's Corner

For package maintainers and hackage trustees

Readme for auto-update

Readme for auto-update-0.1.4

auto-update

A common problem is the desire to have an action run at a scheduled interval, but only if it is needed. For example, instead of having every web request result in a new getCurrentTime call, we'd like to have a single worker thread run every second, updating an IORef. However, if the request frequency is less than once per second, this is a pessimization, and worse, kills idle GC.

This library allows you to define actions which will either be performed by a dedicated thread or, in times of low volume, will be executed by the calling thread.

For original use case, see yesod-scaffold issue #15.