您的位置:首页 > 数据库 > Redis

Redis命令学习—Hash(哈希表)操作

2015-06-12 09:08 591 查看

HDEL

    HDEL key field [field...]:删除Hash key中的一个或多个域, 不存在的域会被忽略。

    返回值:被成功删除的key的数量。

# 测试数据


redis> HGETALL abbr

1) "a"

2) "apple"

3) "b"

4) "banana"

5) "c"

6) "cat"

7) "d"

8) "dog"



# 删除单个域


redis> HDEL abbr a

(integer) 1



# 删除不存在的域


redis> HDEL abbr not-exists-field

(integer) 0



# 删除多个域


redis> HDEL abbr b c

(integer) 2


redis> HGETALL abbr

1) "d"

2) "dog"


HEXISTS 

    HEXISTS key field:查看哈希表key中,给定域field是否存在。
    返回值:如果含有给定域返回1,否则返回0。

redis> HEXISTS phone myphone

(integer) 0


redis> HSET phone myphone nokia-1110

(integer) 1


redis> HEXISTS phone myphone

(integer) 1


HGET

    HGET key field:返回哈希表给定key中给定域的field的值。

    返回值:给定域的值。如果给定域或key不存在时,返回nil。

# 域存在


redis> HSET site redis redis.com

(integer) 1


redis> HGET site redis

"redis.com"



# 域不存在


redis> HGET site mysql

(nil)


HGETALL

        HGETALL key:返回Hash key中,所有的域和值。

        返回值:以列表形式返回Hash的域和值。若key不存在,返回空列表。

        

redis> HSET people jack "Jack Sparrow"

(integer) 1


redis> HSET people gump "Forrest Gump"

(integer) 1


redis> HGETALL people

1) "jack"          # 域

2) "Jack Sparrow"  # 值

3) "gump"

4) "Forrest Gump"


HINCRBY

    HINCRBY key field increment:为哈希表的key中的域的值加上增量increment。

    如果key不存在,那么新的哈希表会被创建。如果field不存在,那么新建filed并初始化field值为0。

    field为字符串,那么将会抛出错误。

    返回值:执行后的field值。

# increment 为正数


redis> HEXISTS counter page_view    # 对空域进行设置

(integer) 0


redis> HINCRBY counter page_view 200

(integer) 200


redis> HGET counter page_view

"200"



# increment 为负数


redis> HGET counter page_view

"200"


redis> HINCRBY counter page_view -50

(integer) 150


redis> HGET counter page_view

"150"



# 尝试对字符串值的域执行HINCRBY命令


redis> HSET myhash string hello,world       # 设定一个字符串值

(integer) 1


redis> HGET myhash string

"hello,world"


redis> HINCRBY myhash string 1              # 命令执行失败,错误。

(error) ERR hash value is not an integer


redis> HGET myhash string                   # 原值不变

"hello,world"


HINCRBYFLOAT

    HINCRBYFLOAT key field increment:为哈希表域的浮点数增加increment。与HINCRBY相似。

    返回值:操作后的field域的值。

    

# 值和增量都是普通小数


redis> HSET mykey field 10.50

(integer) 1

redis> HINCRBYFLOAT mykey field 0.1

"10.6"



# 值和增量都是指数符号


redis> HSET mykey field 5.0e3

(integer) 0

redis> HINCRBYFLOAT mykey field 2.0e2

"5200"



# 对不存在的键执行 HINCRBYFLOAT


redis> EXISTS price

(integer) 0

redis> HINCRBYFLOAT price milk 3.5

"3.5"

redis> HGETALL price

1) "milk"

2) "3.5"



# 对不存在的域进行 HINCRBYFLOAT


redis> HGETALL price

1) "milk"

2) "3.5"

redis> HINCRBYFLOAT price coffee 4.5   # 新增 coffee 域

"4.5"

redis> HGETALL price

1) "milk"

2) "3.5"

3) "coffee"

4) "4.5"


HKEYS

    HKEYS key:返回哈希表中key的所有域。

    返回值:一个包含哈希表中所有域的表。key不存在时,返回一个空表。

# 哈希表非空


redis> HMSET website google www.google.com yahoo www.yahoo.com

OK


redis> HKEYS website

1) "google"

2) "yahoo"



# 空哈希表/key不存在


redis> EXISTS fake_key

(integer) 0


redis> HKEYS fake_key

(empty list or set)


HLEN

    HLEN key:返回哈希表key中域的数量。

    返回值:哈希表中域的数量,key不存在时,返回0。

redis> HSET db redis redis.com

(integer) 1


redis> HSET db mysql mysql.com

(integer) 1


redis> HLEN db

(integer) 2


redis> HSET db mongodb mongodb.org

(integer) 1


redis> HLEN db

(integer) 3


HMGET

    HMGET key field[field ... ]:返回哈希表中一个或多个给定域的值。如果域不存在则返回nil。
    返回值:值的列表。表值的排序和给定参数的顺序一致。
    

redis> HMSET pet dog "doudou" cat "nounou"    # 一次设置多个域

OK


redis> HMGET pet dog cat fake_pet             # 返回值的顺序和传入参数的顺序一样

1) "doudou"

2) "nounou"

3) (nil)                                      # 不存在的域返回nil值


HMSET

    HMSET key field value [field value ... ]:同时将多个k-v对设置到哈希表key中。此命令会覆盖已存在的key。
    返回值:如果执行成功返回ok。否则返回一个错误。

redis> HMSET website google www.google.com yahoo www.yahoo.com

OK


redis> HGET website google

"www.google.com"


redis> HGET website yahoo

"www.yahoo.com"


HSET

    HSET key field value:设置哈希表中key对应field的value。如果存在,旧值覆盖。否则新建哈希表。

    返回值:如果哈新表新建域,并成功,返回1.如果哈希表中field存在,且旧值被新值覆盖,返回0。

    

redis> HSET website google "www.g.cn"       # 设置一个新域

(integer) 1


redis> HSET website google "www.google.com" # 覆盖一个旧域

(integer) 0


HSETNX

    HSETNX key field value:当哈希表中field不存在时,设置值。

    返回值:设置成功,返回1.否则返回0。

redis> HSETNX nosql key-value-store redis

(integer) 1


redis> HSETNX nosql key-value-store redis       # 操作无效,域 key-value-store 已存在

(integer) 0


HVALS

    HVALS key:返回对应key的所有域的值 。

    返回值:一个包含所有值的表。当key不存在时返回一个空表。

# 非空哈希表


redis> HMSET website google www.google.com yahoo www.yahoo.com

OK


redis> HVALS website

1) "www.google.com"

2) "www.yahoo.com"



# 空哈希表/不存在的key


redis> EXISTS not_exists

(integer) 0


redis> HVALS not_exists

(empty list or set)


HSCAN

    HSCAN key cursor [MATCH pattern] [COUNT count]:与SCAN命令相同。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: