Seemingly no, at least from this: ``` R=Redis('localhost',6379); R.set('pippo','90°') R.set('pippo','אבג') ``` which store respectively `"90\xb0"` and `"\xff\xff\xff"` in the key `pippo`. Understandable since `cmd.m` uses `uint8`, I think.
Seemingly no, at least from this:
which store respectively
"90\xb0"and"\xff\xff\xff"in the keypippo. Understandable sincecmd.musesuint8, I think.