dependabot-preview[bot] on dev
Bump Google.Protobuf from 3.15.… (compare)
container.Register<QueryDataStoreActorBase, QuerySqlDataStore>();
var system = ActorSystem.Create("ActorSystem");
system.AddDependencyResolver(new SimpleInjectorDependencyResolver(container, system));
container.RegisterSingleton(system);
var resolver = new SimpleInjectorDependencyResolver(container, system);
is enough
system.AddDepedencyResolver
is a public api exposed for the DI plugins to use. It should not be used directly. Although it is possible, if you know what you are doing.
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"
}
}
}