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

时间:2015-03-04 00:08:41

标签: stackexchange.redis azure-redis-cache

我的应用程序中使用了singleton 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);
                        }
                    }
                }
            }

1 个答案:

答案 0 :(得分:1)

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

Why are connections to Azure Redis Cache so high?