[Haskell-cafe] Easiest to use NoSQL storage with Haskell?

Alberto G. Corona agocorona at gmail.com
Wed Nov 9 21:57:15 CET 2011


TCache manages persistent data trough STM references called DBRefs
that are very similar to TVars, but with  added user-configurable
persistence. Very intuitive to use.

2011/11/9 Bas van Dijk <v.dijk.bas at gmail.com>:
> On 9 November 2011 19:50, dokondr <dokondr at gmail.com> wrote:
>> On Wed, Nov 9, 2011 at 8:41 PM, Bas van Dijk <v.dijk.bas at gmail.com> wrote:
>>>
>>> On 9 November 2011 11:59, dokondr <dokondr at gmail.com> 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?
>>
>
> I believe so:
>
> http://hackage.haskell.org/packages/archive/acid-state/0.6.0/doc/html/Data-Acid-Remote.html
>
> but maybe David can tell you more about that.
>
> Cheers,
>
> Bas
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>



More information about the Haskell-Cafe mailing list