Versions Compared

Key

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

...

저장 플러그인 설정에따라 로컬 DB로할지? 메인 DB로 할지? 그냥 DISK로할지?

데이터이 데이터의 중요도에따라 전략화가 가능합니다.


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.
}


별다른설정이없으면, 파일에 저장이 됩니다. 

...