为什么 Azure 门户显示 Redis Connections Connected client 4.99K?

Why Azure portal is showing Redis Connections Connected client 4.99K?

我在我们的应用程序中使用了单例 azure-redis 数据库客户端。但是在 Azure 门户上它显示连接的客户端 4.99K。我不确定这些客户端是谁,以及为什么当我有单例实例时它显示连接了 4.99K 个客户端?

示例代码:

using StackExchange.Redis;
if (instance == null)
            {
                lock (syncRoot)
                {
                    if (instance == null)
                    {
                        try
                        {
                            _cacheService = GetConnectionMultiplexer();
                            instance = _cacheService.GetDatabase();
                        }
                        catch (Exception ex)
                        {
                            Debug.WriteLine(ex.Message);
                        }
                    }
                }
            }

根据我们在评论中的讨论,这与此处描述的问题相同:

Why are connections to Azure Redis Cache so high?