Re: [akka-user] Re: Distributed cache with Akka

2015-01-22 Thread Kane Rogers
Patrik, you can do no wrong. On Tuesday, 20 January 2015 22:15:39 UTC+11, Patrik Nordwall wrote: > > Another alternative is to use akka-data-replication > . > > /Patrik > > On Tue, Jan 20, 2015 at 3:16 AM, Soumya Simanta > wrote: > >> I would re

[akka-user] Re: Distributed cache with Akka

2015-01-21 Thread asaf
Yea my first intuition was to go with Hazelcast, I'll check the alternatives first though Thanks folks! On Wednesday, January 21, 2015 at 9:29:06 AM UTC+2, Ngoc Dao wrote: > > Not related to Akka, but you should try Hazelcast: > http://hazelcast.org/ > > Hazelcast is designed for this problem. >

[akka-user] Re: Distributed cache with Akka

2015-01-20 Thread Ngoc Dao
Not related to Akka, but you should try Hazelcast: http://hazelcast.org/ Hazelcast is designed for this problem. There's code and data in your program. If you want to distribute code => use Akka, if you want to distribute data => use Hazelcast. On Tuesday, January 20, 2015 at 10:42:09 AM UTC+9,

Re: [akka-user] Re: Distributed cache with Akka

2015-01-20 Thread Patrik Nordwall
Another alternative is to use akka-data-replication . /Patrik On Tue, Jan 20, 2015 at 3:16 AM, Soumya Simanta wrote: > I would recommend using Redis based on personal experience. The current > stable version is not distributed but the new 3.0 v

[akka-user] Re: Distributed cache with Akka

2015-01-19 Thread Soumya Simanta
I would recommend using Redis based on personal experience. The current stable version is not distributed but the new 3.0 version that will be out in a few weeks supports clustering. https://groups.google.com/forum/#!topic/redis-db/_DqcFW8EAOA There are many Scala API for connecting to Redis.