BSD-3-Clause licensed and maintained by Jens Petersen
This version can be pinned in stack with:cached-json-file-0.1.1@sha256:ae7d1ad441ef8db96c61b15858f5e3e26e5374883acf79ff289a3a29543317c0,2082

Module documentation for 0.1.1

cached-json-file

A Haskell library providing a cached json file.

Useful for frequently used programs that use some remote json data which changes rather slowly (like in hours, days, weeks or months), where it is not critical to have always the latest data locally immediately.

Usage

getCachedJSON dir file url minutes caches the json obtained from url in ~/.cache/dir/file for minutes.

eg:

import System.Cached.JSON

getSnapshots :: IO Object
getSnapshots =
  getCachedJSON "stackage-snapshots" "snapshots.json" "http://haddock.stackage.org/snapshots.json" 180

main = getSnapshots >>= print

Each time you run this program within 3 hours the data will be read from the local cache file ~/.cache/stackage-snapshots/snapshots.json rather than re-downloading it each time, which helps to speed up the program and avoid unnecessary web queries.

There is also getCachedJSONQuery prog jsonfile webquery minutes which uses webquery :: (FromJSON a, ToJSON a) => IO a to download the json data.

The shortest cache time is 1 minute.

Changes

Version history for cached-json-file

0.1.1 (2021-12-27)

  • pull new data if cache file is empty

0.1.0 (2021-07-29)

  • initial release with getCachedJSON and getCachedJSONQuery
  • exports lookupKey from http-query