1. 程式人生 > 實用技巧 >Redis資料操作-雜湊

Redis資料操作-雜湊

1.增加

  • 設定單個屬性

    hset key field value

  • 例1:設定鍵user的屬性nameitheima

    hset user name itheima

  • 設定多個屬性

    hmset key field1 value1 field2 value2 ...

  • 例2:設定鍵u2的屬性nameitcast、屬性age11

    hmset u2 name itcast age 11

2.刪除

  • 2.1 刪除整個hash鍵及值,使⽤del命令
  • 2.2 刪除屬性,屬性對應的值會被⼀起刪除

    hdel key field1 field2 ...

  • 例7:刪除鍵u2

    的屬性age

    hdel u2 age

3.修改

hset key newvalue

4.獲取

  • 4.1 獲取⼀個屬性的值

    hget key field

  • 例4:獲取鍵u2屬性name的值

    hget u2 name

  • 獲取多個屬性的值

    hmget key field1 field2 ...

  • 例5:獲取鍵u2屬性nameage的值

    hmget u2 name age

  • 4.2 獲取所有屬性的值

    hvals key

  • 例6:獲取鍵u2所有屬性的值

    hvals u2

  • 4.3 獲取指定鍵所有的屬性

    hkeys key

  • 例3:獲取鍵u2的所有屬性

    hkeys u2

  • 4.4 獲取物件的所有屬性和值

    hgetall key

可能出現的錯誤

MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.

Redis被配置為儲存資料庫快照,但它目前不能持久化到硬碟。用來修改集合資料的命令不能用

  • 原因:
    • 強制關閉Redis快照導致不能持久化。
  • 解決方案:
    • 執行config set stop-writes-on-bgsave-error no 命令後,關閉配置項stop-writes-on-bgsave-error解決該問題。