Im just starting off with Redis with Rails so this maybe a dumb question.
I am trying to save a hash to redis server but when I retrieve it its just a string IE.
In order to save a hash in redis. You must pass the key as a first parameter and then the next parameters must be the keys and values on hmset method.
hmset
$redis.hmset('user:007', :name, 'Antonio', :busy, 'maybe', :ping, 'pong')
Happy Coding.