Versions Compared

Key

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

...

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

여기서 주로 설명하는 방법이, 메인DB를 혹사시키지 않는 방법에 대해서이지만

저장 플러그인 설정에따라 로컬 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.
}


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

...