cached: Cache values to disk.

[ bsd3, data-flow, library, workflow ] [ Propose Tags ]

The module Data.Cached lets you cache values to disk to avoid re-running (potentially long) computations between consecutive executions of your program. Cached values are recomputed only when needed, i.e. when other cached values on which they depend change. Independent computations are run in parallel. It offers convenient fonctions for caching to text files, but caching and uncaching using arbitrary IO actions is also possible.

The module was motivated by writing scientific data flows, simulation experiments or data science scripts. Those often involve long computations and create "flows" where the output of some computation are the inputs of others, until final results are produced (values, figures, statistical tests, etc.).

See the module Data.Cached documentation:


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0
Change log ChangeLog.md
Dependencies base (>=4.7 && <5), containers (>=0.5.10 && <0.8), protolude (>=0.2.2 && <0.4), shake (>=0.16.4 && <0.20), text (>=1.2.3 && <1.3 || >=2.0 && <2.2) [details]
License BSD-3-Clause
Copyright 2018 Guillaume Chérel
Author Guillaume Chérel
Maintainer guillaume.cherel@iscpif.fr
Revised Revision 1 made by AndreasAbel at 2023-10-31T21:14:41Z
Category Workflow, Data Flow
Home page https://github.com/guillaumecherel/cached#readme
Bug tracker https://github.com/guillaumecherel/cached/issues
Source repo head: git clone https://github.com/guillaumecherel/cached
Uploaded by GuillaumeCherel at 2019-03-05T10:47:18Z
Distributions
Downloads 599 total (3 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-03-05 [all 1 reports]

Readme for cached-0.1.0.0

[back to package description]

cached

Cache values to disk.

The module Data.Cached lets you cache values to disk to avoid re-running (potentially long) computations between consecutive executions of your program. Cached values are recomputed only when needed, i.e. when other cached values on which they depend change. Independent computations are run in parallel. It offers convenient fonctions for caching to text files, but caching and uncaching using arbitrary IO actions is also possible.

The module was motivated by writing scientific data flows, simulation experiments or data science scripts. Those often involve long computations and create "flows" where the output of some computation are the inputs of others, until final results are produced (values, figures, statistical tests, etc.).

See the module Data.Cached documentation: