Redis Hash
Redis散列是一种记录类型,其结构是字段值对的集合。您可以使用散列来表示基本对象和存储计数器分组等。
将基本用户配置文件表示为哈希:
HSET user:123 userName zdm firstName zs secondName ls
HGET user:123 userName
HGETALL user:123
存储设备777 ping 服务器、发出请求或发送错误的次数计数器:
HINCRBY device:777:status pings 1
HINCRBY device:777:status pings 1
HINCRBY device:777:status pings 1
HINCRBY device:777:status errors 1
HINCRBY device:777:status requests 1
HGET device:777:status pings
HMMGET device:777:status requests errors
基本命令
HSET sets the value of one or more fields on a hash. HSET设置哈希中一个或多个字段的值。
HGET returns the value at a given field. HGET返回给定字段的值。
HMGET returns the values at one or more given fields. HMGET返回一个或多个给定字段的值。
HINCRBY increments the value at a given field by the integer provided. HINCRBY将给定字段的值递增所提供的整数