我正在设计一个使用Redis作为数据库的Web服务,我想知道使用Redis连接StackService客户端的最佳实践。
重点是我一直在阅读有关Redis的内容,我发现与服务器交互的最佳方式是使用单个并发连接。
问题在于,尽管我每次使用 PooledRedisClientManager ,但每次Web客户端向Web服务发出请求时,我都会获得一个连接到redis服务器的连接客户端(打开的连接)连接的客户端数量增加,没有限制消耗越来越多的内存。
示例'错误'代码:
PooledRedisClientManager pooledClientManager = new PooledRedisClientManager("localhost");
var redisClient = pooledClientManager.GetClient();
using (redisClient)
{
redisClient.Set("key1", "value1");
}
我为解决这个问题所做的是创建一个用静态RedisClient
var实现单例模式的类;如果redisClient
未初始化,则创建一个新的,如果是,则返回初始化的。{/ p>
解决方案:
public class CustomRedisPooledClient
{
private static CustomRedisPooledClient _instance = null;
public RedisClient redisClient = null;
// Objeto sincronización para hacer el Lock
private static object syncLock = new object();
private CustomRedisPooledClient()
{
redisClient = new RedisClient("localhost");
}
public static CustomRedisPooledClient GetPooledClient()
{
if (_instance == null)
{
lock (syncLock)
{
if (_instance == null)
{
_instance = new CustomRedisPooledClient();
}
}
}
return _instance;
}
}
CustomRedisPooledClient customRedisPooledClient = CustomRedisPooledClient.GetPooledClient();
using (customRedisPooledClient.redisClient)
{
customRedisPooledClient.redisClient.Set("key1", "value1");
}
这是一个好习惯吗?
提前谢谢!
答案 0 :(得分:16)
我使用了PooledRedisClientManager
,它运行正常:
示例代码我只运行一次:
static PooledRedisClientManager pooledClientManager = new PooledRedisClientManager("localhost");
和我在许多线程上运行的代码:
var redisClient = pooledClientManager.GetClient();
using (redisClient)
{
redisClient.Set("key" + i.ToString(), "value1");
}
我只有11个客户端连接到服务器。