Popularity
8.6
Stable
Activity
0.0
Stable
5
25
3

Monthly Downloads: 20
Programming language: Haskell
License: Apache License 2.0
Tags: Development    
Latest version: v1.1.0.0

cached-io alternatives and similar packages

Based on the "Development" category.
Alternatively, view cached-io alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of cached-io or a related project?

Add another 'Development' Package

README

cached-io: cache a single IO action

Sometimes you have an action that does something really expensive whose results don't change that much. This is a simple library that lets you cache the output of that expensive action for a developer-specified length of time.

This library is slightly more powerful than io-memoize which lets you memoize the action forever.

Example

See test/test-cachedIO.hs.