Redis 是一個鍵值對存儲系統(tǒng),支持多種數(shù)據(jù)結(jié)構(gòu),如字符串(strings)、列表(lists)、集合(sets)、有序集合(sorted sets)和哈希表(hashes)等
SET key value
例如,將鍵 “name” 的值更新為 “John Doe”:
SET name "John Doe"
ZADD key score member
例如,將有序集合 “my_sorted_set” 中成員 “member1” 的分?jǐn)?shù)更新為 100:
ZADD my_sorted_set 100 member1
HSET key field value
例如,將哈希表 “my_hash” 中字段 “field1” 的值更新為 “newValue1”:
HSET my_hash field1 "newValue1"
HSET
命令的多個參數(shù)形式:HSET key field1 value1 field2 value2 ...
例如,將哈希表 “my_hash” 中的字段 “field1” 更新為 “newValue1”,字段 “field2” 更新為 “newValue2”:
HSET my_hash field1 "newValue1" field2 "newValue2"
HMSET
命令一次性更新哈希表中的多個字段:HMSET key field1 value1 field2 value2 ...
例如,將哈希表 “my_hash” 中的字段 “field1” 更新為 “newValue1”,字段 “field2” 更新為 “newValue2”:
HMSET my_hash field1 "newValue1" field2 "newValue2"
請注意,這些命令會覆蓋原有的值。如果需要追加值而不是覆蓋,請使用相應(yīng)的命令,如 INCR
、ZADD
或 HSET
。