Commands

HDEL

Deletes one or more fields and their values from a hash. Deletes the hash if no fields remain.

Read more

HEXISTS

Determines whether a field exists in a hash.

Read more

HGET

Returns the value of a field in a hash.

Read more

HGETALL

Returns all fields and values in a hash.

Read more

HINCRBY

Increments the integer value of a field in a hash by a number. Uses 0 as initial value if the field doesn't exist.

Read more

HINCRBYFLOAT

Increments the floating point value of a field by a number. Uses 0 as initial value if the field doesn't exist.

Read more

HLEN

Returns the number of fields in a hash.

Read more

HMGET

Returns the values of all fields in a hash.

Read more

HRANDFIELD

Returns one or more random fields from a hash.

Read more

HSCAN

Iterates over fields and values of a hash.

Read more

HSET

Creates or modifies the value of a field in a hash.

Read more

HSETNX

Sets the value of a field in a hash only when the field doesn't exist.

Read more

HSTRLEN

Returns the length of the value of a field.

Read more