keyed-vals: An abstract Handle for accessing collections in stores like Redis

[ bsd3, data, library, redis ] [ Propose Tags ]

Provides an abstract Handle for accessing stored key-value collections, and useful combinators that use Handle.

E.g, one implementation of Handle accesses collections in in Redis; other backends are possible.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.2.1.0, 0.2.2.0, 0.2.3.0, 0.2.3.1
Change log ChangeLog.md
Dependencies aeson (>=1.5.1 && <2.2), base (>=4.11 && <5.0), bytestring (>=0.10.8.2 && <0.11 || >=0.11.3.1 && <0.12), containers (>=0.6.5 && <0.7), http-api-data (>=0.5 && <0.6), redis-glob (>=0.1 && <0.2), text (>=1.2.4 && <1.3 || >=2.0) [details]
License BSD-3-Clause
Author Tim Emiola
Maintainer adetokunbo@emio.la
Category Data, Redis
Home page https://github.com/adetokunbo/keyed-vals#readme
Bug tracker https://github.com/adetokunbo/keyed-vals/issues
Source repo head: git clone https://github.com/adetokunbo/keyed-vals.git
Uploaded by adetokunbo at 2022-11-28T16:06:18Z
Distributions LTSHaskell:0.2.3.1, NixOS:0.2.3.1, Stackage:0.2.3.1
Reverse Dependencies 3 direct, 0 indirect [details]
Downloads 312 total (21 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2022-11-28 [all 1 reports]

Readme for keyed-vals-0.1.0.0

[back to package description]

keyed-vals

GitHubCI StackageNightly Hackage HackageDependencies BSD3

keyed-vals aims to provide a narrow client for storing key-value collections in storage services like Redis.

E.g,

  • Redis supports many other features
  • the abstract Handle declared in keyed-vals just provides combinators that operate on key-value collections stored in some backend
  • so the redis implementation of Handle accesses collections in Redis without exposing its other features.