我尝试在 C++ 的 Linux 上将 list 与 redis 一起使用,如何在 C++ 上使用“rpush”、“lpush”、“rpop”、“lpop”?我是这样写的:
this->_reply = (redisReply *) redisCommand(this->_context, "LPUSH %s %s", key.c_str(), value.c_str());
this->_reply = (redisReply *) redisCommand(this->_context, "RPOP %s", key.c_str());
但它没有成功,“this->_reply->str”说“WRONGTYPE 对持有错误值的键的操作”
我该如何使用这些方法?谢谢