akka
Sending an Akka actorRef to json
Ok so i am writing implicit conversions for case classes in scala, using SJSON, to send messages to remote actors 开发者_开发问答using the akka framework. One of the case classes looks like this[详细]
2023-01-26 07:22 分类:问答Can an Akka anonymous actor access self?
Can an Akka anonymous actor have access to self? In my particular case I\'m wondering if I can reply back to the sender with code similar to this (does not compile due to self not being found):[详细]
2023-01-20 01:24 分类:问答Scala + Akka: How to develop a Multi-Machine Highly Available Cluster
We\'re developing a server system in Scala + Akka for a game that will serve clients in Android, iPhone, and Second Life.There are parts of this server that need to be highly available, running on mul[详细]
2023-01-16 00:11 分类:问答How do I scale my Scala REST application that uses Akka?
I have a Scala application using Akka that receives REST requests, makes some operations against a database, and responds with some information to the client. As it is, my db operations take a long ti[详细]
2023-01-12 08:21 分类:问答Which ThreadPool in Java should I use?
There are a huge amount of tasks. Each task is belong to a single group. The requirement is each group of tasks should executed serially just like executed in a single thread and the throughput should[详细]
2023-01-07 22:41 分类:问答Scala 2.8 Actor design document? Akka design document?
Is there a design documen开发者_如何学JAVAt for Scala 2.8 Actors, like it is for 2.7? Scala Actors: Unifying Thread-based and Event-based Programming[详细]
2023-01-01 23:32 分类:问答How do I rewrite a for loop with a shared dependency using actors
We have some code which needs to run faster. Its already profiled so we would like to make use of multiple threads. Usually I would setup an in memory queue, and have a number of threads taking jobs o[详细]
2022-12-23 14:46 分类:问答Scala 2.8 Actors
We\'re looking at using actors in our Scala code quite soon. We\'re also thinking of moving to Scala 2.8 in the next few weeks. We\'ve been keeping an eye on Akka but it doesn\'t currently support 2.8[详细]
2022-12-23 14:18 分类:问答Composing actors
I\'ve implemented a Listenable/Listener trait that can be added to Actors. I\'m wondering if it\'s possible to attach this styl开发者_运维知识库e of trait to an actor without it having to explicitly c[详细]
2022-12-22 05:07 分类:问答