Saving a HASH to Redis on a rails app

后端 未结 4 1375
梦毁少年i
梦毁少年i 2021-02-02 08:36

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.

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-02 09:03

    The redis gem will remap your hash like this:

    $redis.mapped_hmset "test", { foo: "bar" }
    $redis.hgetall "test" => {"foo"=>"bar"}
    

提交回复
热议问题