0

I'm starting to work with a Redis database and I have been querying a key that is of type hash. I do an HSCAN to check some values and its format. I get the following results.

results

I was wondering if there is any way I can know what's the representation of this data. Is it hexadecimal, binary?. I was also wondering if there is any way to decode this, either by a client or some sort of Python script (I have seen some around but I don't know if they apply to this case)

Brandon
  • 512
  • 8
  • 26

1 Answers1

0

I've realised it's just a serialised object and I have to deserialised through Java

Brandon
  • 512
  • 8
  • 26