小貝_redis hash類型學習,小貝_redishash類型
Redis Hash類型
一、查看hash類型的命令
二、操作hash命令詳解
一、查看hash類型的命令
1、輸入 help@hash
127.0.0.1:6379>help @hash
HDEL key field [field ...]
summary: Delete one or more hash fields
since: 2.0.0
HEXISTS key field
summary: Determine if a hash field exists
since: 2.0.0
HGET key field
summary: Get the value of a hash field
since: 2.0.0
HGETALL key
summary: Get all the fields and values in ahash
since: 2.0.0
HINCRBY key field increment
summary: Increment the integer value of ahash field by the given number
since: 2.0.0
備忘: 由於篇幅太大,因此省略一些。
二、操作hash命令詳解
1、hset
hset key field value
將雜湊表key中的域field的值設為value。
如果key不存在,一個新的雜湊表被建立並進行hset操作。如果域field已經存在於雜湊表中,舊值將被覆蓋。
時間複雜度:
O(1)
返回值:
如果field是雜湊表中的一個建立域,並且值設定成功,返回1。
如果雜湊表中域field已經存在且舊值已被新值覆蓋,返回0。
127.0.0.1:6379> hset website google "www.g.cn" # 一個新域
(integer) 1
127.0.0.1:6379> hset website google "www.google.com" # 覆蓋一箇舊域
(integer) 0
2、hsetnx
hsetnx key field value
將雜湊表key中的域field的值設定為value,若且唯若域field不存在。
若域field已經存在,該操作無效。
如果key不存在,一個新雜湊表被建立並執行hsetnx命令。
時間複雜度:
O(1)
返回值:
設定成功,返回1。
如果給定域已經存在且沒有操作被執行,返回0。
127.0.0.1:6379>hsetnx nosql key-value-store redis
(integer) 1
127.0.0.1:6379> hsetnx nosql key-value-store redis # 操作無效,域key-value-store已存在
(integer) 0
3、hmset
hmset key field value [fieldvalue ...]
同時將多個field - value(域-值)對設定到雜湊表key中。
此命令會覆蓋雜湊表中已存在的域。如果key不存在,一個空雜湊表被建立並執行hmset操作。
時間複雜度:
O(N),N為field - value對的數量。
返回值:
如果命令執行成功,返回OK。
當key不是雜湊表(hash)類型時,返回一個錯誤。
#情況1: 雜湊表
127.0.0.1:6379> hmset website google www.google.com yahoowww.yahoo.com
OK
127.0.0.1:6379> hget website google
"www.google.com"
127.0.0.1:6379> hget website yahoo
"www.yahoo.com"
#情況2:類型錯誤時
127.0.0.1:6379> set G 10 #出錯情況
OK
127.0.0.1:6379> hmset G name huangz age 20
(error) ERR Operation against a key holding the wrongkind of value
4、hget
hget key field
返回雜湊表key中給定域field的值。
時間複雜度:
O(1)
返回值:
給定域的值。
當給定域不存在或是給定key不存在時,返回nil。
127.0.0.1:6379> hset huangz blog huangz.iteye.com
(integer) 1
127.0.0.1:6379> hget huangz blog
"huangz.iteye.com"
5、hmget
hget key field [field ...]
返回雜湊表key中,一個或多個給定域的值。
如果給定的域不存在於雜湊表,那麼返回一個nil值。
因為不存在的key被當作一個空雜湊表來處理,所以對一個不存在的key進行hmget操作將返回一個只帶有nil值的表。
時間複雜度:
O(N),N為給定域的數量。
返回值:
一個包含多個給定域的關聯值的表,表值的排列順序和給定域參數的請求順序一樣。
127.0.0.1:6379> hmset pet dog "doudou" cat"nounou" # 一次儲存多個值
OK
127.0.0.1:6379> hmget pet dog cat fake_pet # 返回值的順序和傳入參數的順序一樣。
1) "doudou"
2) "nounou"
3) (nil) # 不存在的域返回nil值
6、hgetall
hgetall key
返回雜湊表key中,所有的域和值。
在返回值裡,緊跟每個網域名稱(field name)之後是域的值(value),所以返回值的長度是雜湊表大小的兩倍。
時間複雜度:
O(N),N為雜湊表的大小。
返回值:
以列表形式返回雜湊表的域和域的值。若key不存在,返回空列表。
127.0.0.1:6379>hset hash_name jack"Jack Sparrow"
(integer) 1
127.0.0.1:6379> hset hash_name gump"Forrest Gump"
(integer) 1
127.0.0.1:6379> hgetall hash_name
1) "jack" # 域
2) "Jack Sparrow" # 值
3) "gump"
4) "Forrest Gump"
7、hdel
hdel key field [field ...]
刪除雜湊表key中的一個或多個指定域。
不存在的域將被忽略。
時間複雜度:
O(N),N為要刪除的域的數量。
返回值:
若域存在且被成功刪除,返回1。
若key不存在或域不存在,返回0。
註解
在Redis2.2及2.2以下的版本裡,hdel每次只能刪除單個域,如果你需要在一個原子時間內刪除多個域,請將命令包含在MULT/EXEC塊內。
127.0.0.1:6379> hset hash_name jack "Jack Sparrow"
(integer) 1
127.0.0.1:6379> hget hash_name jack
"Jack Sparrow"
127.0.0.1:6379> hdel hash_name jack
(integer) 1
127.0.0.1:6379> hget hash_name jack
(nil)
8、hlen
hlen key
返回雜湊表key中域的數量。
時間複雜度:
O(1)
返回值:
雜湊表中域的數量。
當key不存在時,返回0。
127.0.0.1:6379> hset hash_name jack"Jack Sparrow"
(integer) 1
127.0.0.1:6379> hset hash_name gump"Forrest Gump"
(integer) 1
127.0.0.1:6379> hlen hash_name
(integer) 2
9、hexists
hexists key field
查看雜湊表key中,給定域field是否存在。
時間複雜度:
O(1)
返回值:
如果雜湊表含有給定域,返回1。
如果雜湊表不含有給定域,或key不存在,返回0。
127.0.0.1:6379> hexists phone myphone
(integer) 0
127.0.0.1:6379> hset phone myphone nokia-1110
(integer) 1
127.0.0.1:6379> hexists phone myphone
(integer) 1
10、hincrby
hincrby key field increment
為雜湊表key中的域field的值加上增量increment。
如果key不存在,一個新的雜湊表被建立並執行hincrby命令。
如果域field不存在,或域已有的字串值不能表示為數字,那麼在執行命令前,域的值被設定為0。
本操作的值限制在64位(bit)有符號數字表示之內。
時間複雜度:
O(1)
返回值:
執行hincrby命令之後,雜湊表key中域field的值。
127.0.0.1:6379> hexists hash_count page_views
(integer) 0
127.0.0.1:6379> hincrby hash_count page_views 200
(integer) 200
127.0.0.1:6379> hincrby hash_count page_views 10
(integer) 210
11、hkeys
hkeys key
返回雜湊表key中的所有域。
時間複雜度:
O(N),N為雜湊表的大小。
返回值:
一個包含雜湊表中所有域的表。
當key不存在時,返回一個空表。
#情況1:雜湊表非空
127.0.0.1:6379> hmset website google www.google.com yahoowww.yahoo.com
OK
127.0.0.1:6379> hkeys website
1) "google"
2) "yahoo"
#情況2:空雜湊表/key不存在
127.0.0.1:6379>exists fake_key
(integer) 0
127.0.0.1:6379> hkeys fake_key
(empty list or set)
12、hvals
hvals key
返回雜湊表key中的所有值。
時間複雜度:
O(N),N為雜湊表的大小。
返回值:
一個包含雜湊表中所有值的表。
當key不存在時,返回一個空表。
#情況1:非空雜湊表
127.0.0.1:6379> hmset website google www.google.com yahoowww.yahoo.com
OK
127.0.0.1:6379> hvals website
1) "www.google.com"
2) "www.yahoo.com"
#情況2:空雜湊表/不存在的key
127.0.0.1:6379> exists not_exists
(integer) 0
127.0.0.1:6379> hvals not_exists
(empty list or set)
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。