Can I Read/Write from separate actors with same PersistenceId?
问题 The Petabridge blog's Akka.Persistence intro makes it clear that you can't have multiple actors with the same PersistenceId: The PersistenceId field is important - it uniquely identifies an entity that is persisting its state using Akka.Persistence, and there should be exactly one persistent actor at any given time for a single PersistenceId . [...] so imagine if you have two actors with the same PersistenceId but different sequence numbers writing to the same store. It will be chaos and will