Hi, I have the following string stored in Redis (nb json):
{"address":"Bee Cottage, Lostiwithiel"}
when I do a IRedisClient.Get<string>(key), this returns the above serialized to JSV, but without the comma-containing string escaped. I can get round this by changing the <T> to a structured type, but just
a) wondering why it serializes JSON to JSV and
b) pointing out that a Json string value that contains commas should be escaped when this happens.