Redis:WRONGTYPE Operation against a key holding the wrong kind of value_Redis

來源:互聯網
上載者:User

相關串連:通過Canal保證某網站的Redis與MySql的資料自動同步 1.錯誤資訊

redis.clients.jedis.exceptions.JedisDataException: WRONGTYPE Operation against a key holding the wrong kind of value
2.分析

當前程式中key的操作類型,並不與redis庫中存在的key的類型相匹配。舉例
第一次儲存key,將其設定為key-value形式

[root@server3 src]# ./redis-cli -h 192.168.6.123 -p 6379 -a "{password}"192.168.6.123:6379> set my_test_userid_001 "0001"OK192.168.6.123:6379> get my_test_userid_001"0001"

第二次儲存key,將其以key-map形式進行儲存,則會報錯

192.168.6.123:6379> hmset my_test_userid_001 user001 "0001" user002 "0002"(error) WRONGTYPE Operation against a key holding the wrong kind of value

如果刪除之前的key,則當前的操作可以進行:

192.168.6.123:6379> del my_test_userid_001(integer) 1192.168.6.123:6379> hmset my_test_userid_001 user001 "0001" user002 "0002"OK192.168.6.123:6379> hgetall my_test_userid_0011) "user001"2) "0001"3) "user002"4) "0002"192.168.6.123:6379> hmget my_test_userid_001 user0011) "0001"192.168.6.123:6379> del my_test_userid_001(integer) 1
3.問題解決 3.1.臨時解決

刪除衝突key,類似於:

192.168.6.123:6379> del my_test_userid_001
3.2.根本解決

造成這個問題,肯定是程式在多處使用了同一個key,並且是以不同的類型,有的以key-value類型,有的以key-map,有的以key-object。
查看程式,找到這個衝突,並修改。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.