
9 Nov
2011
9 Nov
'11
1:50 p.m.
On Wed, Nov 9, 2011 at 8:41 PM, Bas van Dijk
On 9 November 2011 11:59, dokondr
wrote: What Haskell package to work with NoSQL storage is both mature and easiest to use? I need persistent storage for simple key/value lists (not complex JSON docs).
If your data fits in RAM then acid-state is also an option:
http://hackage.haskell.org/package/acid-state
It's used as the storage library for the new hackage server.
I need to share data across processes running both on the same node or different nodes. Every process has its own memory space. Can acid-state memory be shared between several system processes?