dependabot-preview[bot] on nuget
Bump Google.Protobuf from 3.15.… (compare)
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)
akka {
actor {
provider = "Akka.Remote.RemoteActorRefProvider, Akka.Remote"
}
remote {
helios.tcp {
port = 8092
hostname = localhost
}
}
}
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"
}
}
}