I can save a dict as a string in redis as follows:
>>> r.set(
'rt.http://rottentomatoes.com/m/771354525/',
{"Director": "blasco ricardo", "Platform": "RT"}
)
How would I save the dict as a dict/hash directly so I wouldn't have to use json.loads to read it into a dict? Currently, if I do r.get() I get the dict as a string:
>>> r.get('rt.http://rottentomatoes.com/m/771354525/')
'{"Director": "blasco ricardo", "Platform": "RT"}'