Actors Mailbox Overflow. Scala
问题 Im currently working with two actors in scala. One, the producer , produces some data and sends it to a parcer . The producer sends a HashMap[String,HashMap[Object,List[Int]]] through a message (along with this to mark the sender): parcer ! (this,data) The parser is constantly waiting for messages like so: def act(){ loop{ react{ case (producer, data)=> parse(data); } } } The program runs perfectly in normal circunstances. The problem comes with big volumes of data and many messages sent (The