Redis ZRANGE Command Explained

In Redis, the ZRANGE command returns the specified range of elements in the sorted set stored at the specified key.

It can perform different types of range queries: by index (rank), by the score, or by lexicographical order.

Read more

Redis ZADD Command Explained

In Redis, the ZADD command is used to add one or more members to a sorted set, or to update the score for members that already exist in the sorted set.

It returns the number of elements added to the sorted set, or the number of elements updated if the CH argument is used.

Read more

Redis HINCRBYFLOAT Command

The Redis HINCRBYFLOAT command increments the field in the hash at the specified key by a floating point number. We specify how much we want the field to increment by when we call the command.

Read more

Redis HINCRBY Command

The Redis HINCRBY command increments the number that’s stored at the specified field in the hash at the specified key. We specify how much we want the field to increment by when we call the command.

Read more

Redis HMGET Command

The Redis HMGET command allows us to get multiple values from a hash. It returns the value/s associated with the specified field/s in the hash at the specified key.

Read more

Redis HRANDFIELD Command

The Redis HRANDFIELD command allows us to get a random field from a given key.

The command accepts several arguments that allows us to specify the number of random fields returned, whether to include the same field multiple times, and whether or not to include the values with each field returned.

The HRANDFIELD command was introduced in Redis 6.2.0.

Read more