vault: a persistent store for values of arbitrary types

[ bsd3, data, library ] [ Propose Tags ]

A vault is a persistent store for values of arbitrary types. It's like having first-class access to the storage space behind IORefs.

The data structure is analogous to a bank vault, where you can access different bank boxes with different keys; hence the name.

Also provided is a locker type, representing a store for a single element.

Changelog:

  • 0.3.0.0 Split modules into Lazy and Strict variants, no default choice. Add Hashable instance to Data.Unique.Really for all implementations.


[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.0.1, 0.2.0.3, 0.2.0.4, 0.3.0.0, 0.3.0.1, 0.3.0.2, 0.3.0.3, 0.3.0.4, 0.3.0.5, 0.3.0.6, 0.3.0.7, 0.3.1.0, 0.3.1.1, 0.3.1.2, 0.3.1.3, 0.3.1.4, 0.3.1.5
Dependencies base (>=4.6 && <4.7), containers (>=0.5 && <0.6), hashable (>=1.1.2.5 && <1.3), unordered-containers (>=0.2.3.0 && <0.3) [details]
License BSD-3-Clause
Copyright (c) Heinrich Apfelmus 2011-2013
Author Heinrich Apfelmus, Elliott Hird
Maintainer Heinrich Apfelmus <apfelmus at quantentunnel de>
Category Data
Home page https://github.com/HeinrichApfelmus/vault
Source repo head: git clone git://github.com/HeinrichApfelmus/vault.git
Uploaded by HeinrichApfelmus at 2013-07-29T14:41:23Z
Distributions Arch:0.3.1.5, Debian:0.3.1.4, Fedora:0.3.1.5, FreeBSD:0.3.0.4, LTSHaskell:0.3.1.5, NixOS:0.3.1.5, Stackage:0.3.1.5, openSUSE:0.3.1.5
Reverse Dependencies 59 direct, 3681 indirect [details]
Downloads 135379 total (219 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for vault-0.3.0.0

[back to package description]

Vault is a tiny library that provides a single data structure called vault.

A vault is a type-safe, persistent storage for values of arbitrary types. Like IORef, I want to be able to store values of any type in it, but unlike IORef, I want the storage space to behave like a persistent, first-class data structure, as appropriate for a purely functional language.

It is analogous to a bank vault, where you can access different bank boxes with different keys; hence the name.

In other words, a vault is an abstract data type with the following basic signature

data Key a
data Vault

newKey :: IO (Key a)
empty  :: Vault
lookup :: Key a -> Vault -> Maybe a
insert :: Key a -> a -> Vault -> Vault
delete :: Key a -> Vault -> Vault

A few common functions for finite maps, like adjust and union, are provided as well.

This library was created thanks to the feedback on my blog post Vault - a persistent store for values of arbitrary types.

Installation

The whole thing is available on hackage, so you just have to type

cabal update
cabal install vault

Feedback

Use the issue tracker or send an email to the maintainer.