Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Store Plugin

스냅샷은 다양한 저장소에 저장이 가능합니다.가능하며,  akka.config에서 지정가능합니다.


Panel
title설정예

akka.persistence.journal.inmem {
class = "Akka.Persistence.Journal.MemoryJournal, Akka.Persistence"
# Dispatcher for the plugin actor.
plugin-dispatcher = "akka.actor.default-dispatcher"
}

akka.persistence.snapshot-store.inmem {
# Class name of the plugin.
class = "Akka.Persistence.Snapshot.MemorySnapshotStore, Akka.Persistence"
# Dispatcher for the plugin actor.
plugin-dispatcher = "akka.actor.default-dispatcher"
}

akka.persistence.snapshot-store.local {
# Class name of the plugin.
}


참고 url : https://petabridge.com/blog/intro-to-persistent-actors/

...