We are implementing storage plugin for akka-persistence That means 2 providers, for:
- queue-like Journal plugin API
- map-like Snapshot store plugin API
Since only Chronicle Map supports multi-node symmetric replication, we eliminate Chronicle Queue from consideration.
Question: what is the best way to create fast queue on top of the map? Thank you.