dependabot-preview[bot] on nuget
Bump NUnit from 3.7.1 to 3.13.1… (compare)
dependabot-preview[bot] on nuget
Bump Microsoft.NET.Test.Sdk fro… (compare)
dependabot-preview[bot] on nuget
Bump System.Configuration.Confi… (compare)
dependabot-preview[bot] on nuget
Bump FsCheck.Xunit from 2.14.6 … (compare)
persistence {
journal {
redis {
# qualified type name of the Redis persistence journal actor
class = "Akka.Persistence.Redis.Journal.RedisJournal, Akka.Persistence.Redis"
# connection string, as described here: https://github.com/StackExchange/StackExchange.Redis/blob/master/Docs/Configuration.md#basic-configuration-strings
configuration-string = "localhost:6380,ssl=false"
# dispatcher used to drive journal actor
plugin-dispatcher = "akka.actor.default-dispatcher"
#Redis journals key prefixes. Leave it for default or change it to appropriate value. WARNING: don't change it on production instances.
key-prefix = "akka:persistence:journal"
}
}
snapshot-store {
redis {
# qualified type name of the Redis persistence snapshot storage actor
class = "Akka.Persistence.Redis.Snapshot.RedisSnapshotStore, Akka.Persistence.Redis"
# connection string, as described here: https://github.com/StackExchange/StackExchange.Redis/blob/master/Docs/Configuration.md#basic-configuration-strings
configuration-string = "localhost:6380,ssl=false"
# dispatcher used to drive snapshot storage actor
plugin-dispatcher = "akka.actor.default-dispatcher"
#Redis storage key prefixes. Leave it for default or change it to appropriate value. WARNING: don't change it on production instances.
key-prefix = "akka:persistence:snapshots"
}
}
}