more redis fixes

This commit is contained in:
Stanley Dimant
2022-09-13 12:18:02 +02:00
parent 3cdaa53a65
commit 56728d1fba
4 changed files with 21 additions and 8 deletions

View File

@@ -58,7 +58,7 @@ public class Startup
services.AddStackExchangeRedisCache(opt =>
{
opt.Configuration = redis;
opt.InstanceName = "MareSynchronos";
opt.InstanceName = "MareSynchronosCache:";
});
services.AddSingleton<IClientIdentificationService, DistributedClientIdentificationService>();
services.AddHostedService(p => p.GetService<IClientIdentificationService>());