skip to Main Content

Redis – Get Read only connection strings of App Configuration in ARM Template

Hi I want to add Application Config Read Only Connection string in ARM Template "appSettingsShared": { "value": [ { "name": "RedisCache:ConnectionString", "value": "[concat(variables('RedisCacheName'),'.redis.cache.windows.net:6380,abortConnect=false,ssl=true,password=', listKeys(resourceId('Microsoft.Cache/Redis', variables('RedisCacheName')), '2015-08-01').primaryKey)]" }, { "name": "AppConfig:ConnectionString", "value": "???" } ] I know how to do it…

VIEW QUESTION

Stackexchange Redis exception: an unknown error occurred when writing the message

.Net core 2.1 web-api uses below redis nuget package "StackExchange.Redis" Version="2.1.55" and connects to Azure Redis P1 tier, Redis version 4.0.14 On appsettings.config, "RedisConfiguration": { "ConnectionString": "mycache.redis.cache.windows.net:6380,password=$$$$$$$$$F543shkerXXXXXg=,ssl=True,abortConnect=False", "DatabaseNumber": 1 } While performing load test, Receiving below exception very frequently especially…

VIEW QUESTION
Back To Top
Search