1

https://github.com/MichaCo/CacheManager/issues/42

你好。我正在使用 Redis4You 托管的 redis 服务器。以下配置工作正常。当代码到达 lineCache.Add("a", "b");时,它​​会无限期地停留在那里。当我监控 Redis 服务器时,我看到控制台中充满了 PING。

static class Program
{
    static readonly ICacheManager<string> Cache = CacheFactory.Build<string>("Test", cbcp =>
    {
        cbcp.WithSystemRuntimeCacheHandle("testCache")
            .And
            .WithRedisConfiguration("redis", rcb =>
            {
                rcb.WithEndpoint("<XXX>", 1111)
                   .WithPassword("<YYY>")
                   .WithAllowAdmin()
                   .WithDatabase(1);
            })
            .WithMaxRetries(100)
            .WithRetryTimeout(10)
            .WithRedisBackPlate("redis")
            .WithRedisCacheHandle("redis", true);
    });
    static void Main(string[] args)
    {
        /* It stucks in the first line. */
        Cache.Add("a", "b");
        Console.ReadLine();
    }
}

我调试了 CacheManager 库提供的代码和 LuaScripts,如下面的导致错误:

local result=redis.call('HMSET', KEYS[1], 'value', ARGV[1], 'type', ARGV[2], 'expiration', ARGV[3], 'timeout', ARGV[4], 'created', ARGV[5])
if ARGV[3] ~= '0' and ARGV[4] ~= '0' then
    redis.call('PEXPIRE', KEYS[1], ARGV[4])
else
    redis.call('PERSIST', KEYS[1])
end
return result

...并且此 luascript 用于 CacheManager 库 RedisCacheHandler.cs LoadScripts() 方法中的这部分代码;

var putLua = StackRedis.LuaScript.Prepare(ScriptPut);
putLua.Load(server);

那么,这里有什么问题呢?(我认为不是版本,因为redis4you使用的是2.4,redislab使用的是redis的3.0.3。)

4

1 回答 1

1

Redis4You 使用 Redis v2.4,RedisLab 现在使用 Redis v3.0.3。因此,RedisLab 服务器运行良好,但 Redis4You 存在问题,因为 Redis v2.4 不支持脚本。

CacheManager 应该解决这个问题。顺便说一句,您可以使用 IServer.Features.Scripting 检查此可用性。

于 2016-02-11T08:32:06.197 回答