redis 报Operation against a key holding the wrong kind of value警告的解决方法

WRONGTYPE Operation against a key holding the wrong kind of value

github:https://github.com/antirez/redis/issues/2864

原因为redis存在一个同key但是类型不同的数据,在插入新类型数据时需要先删除已有的key值。

时间: 2024-11-03 03:32:22

redis 报Operation against a key holding the wrong kind of value警告的解决方法的相关文章

Redis报错:WRONGTYPE Operation against a key holding the wrong kind of value 解决处理

首先应该明白报这个错误说明了你用的jedis方法与redis服务器中存储数据的类型存在冲突. 例如:数据库中有一个key的数据存储的是Hash类型的,但是你使用jedis执行数据操作的时候却使用了非Hash的操作方法.此时就会报 WRONGTYPE Operation against a key holding the wrong kind of value这个错误! 问题解决: 先执行一条如下命令: redis 127.0.0.1:6379>type key 此时会显示出该key存储在现在re

WRONGTYPE Operation against a key holding the wrong kind of value:类型搞混弄出的错误

今天用C# 连接Redis做性能测试,用的接口是StackExchange.Redis,按照正常的思路获取数据库连接,代码如下: 1 string conn = "我的ip:6379,password=登录密码"; 2 3 ConnectionMultiplexer client = ConnectionMultiplexer.Connect(conn); 4 5 IDatabase db = client.GetDatabase(2); 然后就向里边添加数据,类似的代码如下: 1 R

SVN报Previous operation has not finished; run 'cleanup' if it was interrupted错误的解决方法

做着项目突然SVN报Previous operation has not finished; run 'cleanup' if it was interrupted,进度又要继续,烦.百度一下发现很多解决方案,自己马上尝试的解决,还有点意思,记录一下. 1.下载sqlite3.exe    2.找到你项目的.svn文件,查看是否存在wc.db 3.将sqlite3.exe放到.svn的同级目录 4.启动cmd执行sqlite3 .svn/wc.db "select * from work_que

navicat连接oracle数据库报ORA-28547: connection to server failed, probable Oracle Net admin error错误的解决方法

原文:navicat连接oracle数据库报ORA-28547: connection to server failed, probable Oracle Net admin error错误的解决方法 navicat是通过oracle客户端连接oracle服务器的. oracle的客户端有两种,一种标准的客户端安装程序,下载地址: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html

连接mysql报错java.sql.SQLException: The server time zone value '?й???????' is unrecognized...解决方法

报错内容: java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time

WRONGTYPE Operation against a key holding the wrong kind of value

今天改动代码,一运行就跑错了,错误原因: 因为redis中已经存在了相同的key, 而且key对应的值类型并不是Set,而是SortSet(改动前):再调用smembers时,抛出此错误. 解决方法: 将原来的SortSet类型的key给Del掉,再从新执行代码,没有问题. 看来以后改动缓存类型时,要长个心眼,先把之前的同名不同类型的Key给Del掉.

〖Android〗arm-linux-androideabi-gdb报 libpython2.6.so.1.0: cannot open shared object file错误的解决方法

执行: prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-gdb out/target/product/rk30sdk/symbols/system/bin/app_process 报错: prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-gdb: error while loa

关于xamarin 运行项目报 一个或多个项目目标不支持生成操作“EmbeddedResource” 错误解决方法

1. 清理整个项目 2.删除 bin 和obj 3. 以管理员身份 打开VS,重新生成就不在会报错. 貌似 管理员总是那么的魔性~~~

Tomcat启动web项目报Bad version number in .class file (unable to load class ...)错误的解决方法

一.发现问题:启动 tomcat 控制台报该错误. 二.原因:tomcat 的 jdk 版本和编译.class的 jdk 版本不一致. 三.解决办法: 步骤一: 查看 MyEclipse 的 jdk 版本和位置:Window—>Preferences—>Java—>Installed JRES.设置如下图所示: 步骤二: 查看 MyEclipse 的 compiler版本:Window—>Preferences—>Java—>Compiler, 设置成6.0(或者7.0