我有一个在 Windows 2008 机器上运行的 Redis 服务器。我有多个网站,每个网站都使用BasicRedisClientManager.
此实例在应用程序启动时设置一次并设置到Application[]
商店中。这样它就可以在所有用户中重复使用。我遇到的问题是一个站点在专用服务器上运行,而其他站点在运行 Redis 服务器的 localhost 上运行。一个是生产,另一个是新工作/演示的测试地点。远程客户端工作得很好,但本地主机客户端不会与服务器通信,并且似乎处于锁定/死机状态。当我运行该站点时,我只会遇到堆栈溢出,并且该站点会自行回收。以下是我所拥有的设置的一些示例代码。我看到有一些关于在客户端之间创建锁的信息,但我不确定这是否是我需要采取的路线。
http://www.servicestack.net/docs/redis-client/distributed-locking-with-redis
示例代码:
protected override void Application_Start(object sender, EventArgs e)
{
/*
* Create basicRedisClientManager for redis.
*/
var redisHost = ConfigurationManager.AppSettings["RedisHostIp"].ToString();
BasicRedisClientManager basicRedisClientManager = new BasicRedisClientManager(redisHost);
Application["BasicRedisClientManager"] = basicRedisClientManager;
.....
}
然后在类构造函数中使用
public CacheManager()
{
if (Application["BasicRedisClientManager"] != null)
{
/*local variable*/
basicRedisClientManager = (BasicRedisClientManager)Application["BasicRedisClientManager"];
}
}
在课堂上使用管理器。
if (basicRedisClientManager != null)
{
using (var redisClient = (RedisClient)basicRedisClientManager.GetClient())
{
if (!saveToInProcOnly && redisClient != null)
{
using (var redis = redisClient.GetTypedClient<T>())
{
redis.SetEntry(key, value);
}
}
}
}
这个逻辑在所有站点上都是相同的。
非常感谢任何见解!