我正在使用redis在节点中执行系统。问题是,当我尝试使用rpush或lpush在redis中保存新的“数组”时,它会丢弃类型错误:
[Error: WRONGTYPE Operation against a key holding the wrong kind of value]
以下是我使用的代码:
redis_client.rpush(board_name, data.concentration, function(err, reply){
if(err){
console.log('Error: ', err);
}
else{
console.log(board_name + 'has saved a new concentration value to redis.');
}
});
我已经做了一些测试,当board_name的值是“ssas”(随机板名称名称)时,它失败了,但是例如,如果是“hola”,它就会起作用。