Alex Valuyskiy
Alex Valuyskiy
http://doc.akka.io/docs/akka/current/scala/persistence-schema-evolution.html
The current article is too concise and outdated: http://getakka.net/docs/persistence/storage-plugins This one consists much more information: http://doc.akka.io/docs/akka/current/scala/persistence.html#storage-plugins
Base on these articles http://getakka.net/docs/concepts/messages http://akkanetdocfx.azurewebsites.net/articles/actors/untyped-actor-api.html#messages-and-immutability
Akka.NET uses FSM actor in a many places, like remoting, persistence, cluster singleton. It is like one of the most important primitives. We should know how fast it is, and...
It tries to cast `Akka.Actor.ActorPath.Surrogate` type to `ActorPath` ``` System.InvalidCastException: Unable to cast object of type 'Surrogate' to type 'Akka.Actor.ActorPath'. at lambda_method(Closure , Stream , DeserializerSession ) at Hyperion.ValueSerializers.ObjectSerializer.ReadValue(Stream stream,...
NullReferenceExcetions throws on ISerializable deserialization ```C# public class Person : ISerializable { public Person(string firstName, string lastName) { FirstName = firstName; LastName = lastName; } public string FirstName { get;...
http://doc.akka.io/docs/akka-stream-kafka/current/consumer.html#connecting-producer-and-consumer
http://doc.akka.io/docs/akka-stream-kafka/current/consumer.html#source-per-partition
It should be possible to share a producer or consumer via constructor parameters