尝试运行HMSET时出现以下错误。
我不确定该消息是什么意思?

No way to dispatch this command to Redis Cluster. Missing key.
HMSET ABC12340112163928690398 XYZ12340112163928690429 b'eyJuY2lfaWQiOiAi='

最佳答案

该字段的值未正确传递-删除前导的“b”(Pythonic值?),它应该可以正常工作,即:

HMSET ABC12340112163928690398 XYZ12340112163928690429 'eyJuY2lfaWQiOiAi='

关于amazon-web-services - AWS Redis(v 3.2.6):HMSET无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48230575/

10-10 03:55