You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[YamlMember(Description="\nConfiguration for the realtime communication solution SignalR")]
34
+
publicSignalRDataSignalR{get;set;}=new();
35
+
33
36
publicstaticAppConfigurationCreateEmpty()
34
37
{
35
38
returnnewAppConfiguration()
@@ -47,6 +50,15 @@ public static AppConfiguration CreateEmpty()
47
50
};
48
51
}
49
52
53
+
publicrecordSignalRData
54
+
{
55
+
[YamlMember(Description=
56
+
"\nWhether to use redis (or any other redis compatible solution) to scale out SignalR hubs. This is required when using multiple api server replicas")]
57
+
publicboolUseRedis{get;set;}=false;
58
+
59
+
publicstringRedisConnectionString{get;set;}="";
60
+
}
61
+
50
62
publicrecordFilesData
51
63
{
52
64
[YamlMember(Description="The maximum file size limit a combine operation is allowed to process")]
0 commit comments