Re: [akka-user] Understanding akka.http.server.max-connections

2016-09-29 Thread Federico Nusymowicz
Thank you! On Thursday, September 29, 2016 at 10:40:43 AM UTC-7, Konrad Malawski wrote: > > Number of open connections. > Not websockets, but connections in general, AFAIR. > > On 29 Sep 2016 7:38 p.m., "Federico Nusymowicz" > wrote: > > My websocket serv

[akka-user] Understanding akka.http.server.max-connections

2016-09-29 Thread Federico Nusymowicz
My websocket server will maintain many (mostly idle) connections. Does `akka.http.server.max-connections` place a limit on the number of open websockets? Or is `akka.http.server.max-connections` a limit on the number of websockets that can be opened concurrently? -- >> Read the

[akka-user] Re: Kryo serialization not working?

2016-09-08 Thread Federico Nusymowicz
DERP. I was supposed to nest serializers and serialization-bindings under akka.actor ^_^; On Thursday, September 8, 2016 at 3:24:56 PM UTC-7, Federico Nusymowicz wrote: > > I've been trying to set up kryo serialization, without success. Here's my > firs

[akka-user] Kryo serialization not working?

2016-09-08 Thread Federico Nusymowicz
I've been trying to set up kryo serialization, without success. Here's my first attempt: akka { > ... > > extensions = [ > "akka.cluster.pubsub.DistributedPubSub", > "com.romix.akka.serialization.kryo.KryoSerializationExtension$" > ] > > actor { > ... > > kryo { > ty