gpt4 book ai didi

c# - 使用 StackExchange.Redis 时出现错误 'WRONGTYPE Operation against a key holding the wrong kind of value'

转载 作者:可可西里 更新时间:2023-11-01 11:23:25 27 4
gpt4 key购买 nike

我使用以下代码通过 StackExchange.Redis 将数据推送到 REDIS,有时在生产中出现错误“针对持有错误类型值的键的 WRONGTYPE 操作”。

    private static IDatabase RedisDB = null;
private static ConnectionMultiplexer redisConnection =
ConnectionMultiplexer.Connect($"IPAddress:port,allowAdmin=true,
ConnectTimeout=30000,connectRetry=5,syncTimeout=30000,
abortConnect=false");
RedisDB = redisConnection.GetDatabase();
RedisDB.ListRightPush(listName, value);

最佳答案

执行 TYPE {listName} 以查看该键的类型。它很可能不是 list。您可能需要弄清楚是什么命令创建了该 key 。

关于c# - 使用 StackExchange.Redis 时出现错误 'WRONGTYPE Operation against a key holding the wrong kind of value',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56766835/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com