Reputation: 8006
I'm getting the following error when I try to run HMSET. I'm not sure what the message means?
No way to dispatch this command to Redis Cluster. Missing key.
HMSET ABC12340112163928690398 XYZ12340112163928690429 b'eyJuY2lfaWQiOiAi='
Upvotes: 1
Views: 93
Reputation: 49962
The field's value is not passed properly - remove the leading "b" (a Pythonic value?) and it should work, i.e.:
HMSET ABC12340112163928690398 XYZ12340112163928690429 'eyJuY2lfaWQiOiAi='
Upvotes: 2