GitHub user mr-git edited a comment on the discussion: inmem snapshot store
wow, got it working with extra config: ```hocon # In-memory snapshot-store plugin. pekko.persistence.snapshot-store.inmem { # Class name of the plugin. class = "org.apache.pekko.persistence.testkit.PersistenceTestKitSnapshotPlugin" } ``` so that I can use it in similar fashion as `InmemJournal`: ```hocon pekko .persistence { journal.plugin = "pekko.persistence.journal.inmem" snapshot-store.plugin = "pekko.persistence.snapshot-store.inmem" } ``` IMHO, the first snippet mush be provided by `testkit` in same fashion as Journal's `inmem` is provided. I guess it was like that in akka too, but current developer experience is sub-optimal GitHub link: https://github.com/apache/pekko/discussions/1856#discussioncomment-13205833 ---- This is an automatically sent email for notifications@pekko.apache.org. To unsubscribe, please send an email to: notifications-unsubscr...@pekko.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org