On Dec 18, 6:29 pm, Debasish Ghosh <
ghosh.debas...@gmail.com> wrote:
> Hi David -
>
> Thanks for the effort. We all appreciate your contribution to add Terrastore
> as one of Akka's persistence backends.
>
> Thanks.
>
>
>
>
>
> On Sat, Dec 18, 2010 at 10:55 PM, David Greco <
grec...@gmail.com> wrote:
> > Hi Terrastorers,
> > I've just completed the implementation of an Akka (
www.akkasource.org)
> > backend based on Terrastore.
> > Terrastore is another persistence backend option besides CouchDB,
> > MongoDB, HBase, Voldemort, etc.
> > Basically, Akka provides persistent data structure managed by an STM
> > (Software Transactional Layer) implementation.
> > Besides being held in memory and besides being ACID these persistent
> > data structure can be permanently persisted into any of the DBs
> > integrated with Akka, now also Terrastore.
> > So, for example, in Java:
>
> > PersistentMap<byte[], byte[]> map1 = HBaseStorage.newMap(id1);
> > PersistentMap<byte[], byte[]> map2 = TerrastoreStorage.newMap(id2);
>
> > means the creation of two PersistentMap backed respectively by HBase
> > and Terrastore. In this way the two maps are also saved persistently
> > and can be retrieved subsequently using the ids (id1 and id2).
> > Here