You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following simple program:
namespace Proto1.Client
{
using Akka.Actor;
using Akka.IO;
using System;
class Program
{
static void Main(string[] args)
{
var system = ActorSystem.Create("proto1");
var manager = system.Tcp(); //this causes 100% CPU
Console.ReadLine();
}
}
}
On my machine it uses around 25% CPU. Starting the console app 4 times gives me 100% CPU utilization: