Redis HEXISTS Command

In Redis, the HEXISTS command allows us to check whether a field exists in a given hash. We pass the name of the key and the field to the command, and it returns 1 if the field exists, and 0 if it doesn’t.

Read more

Redis HDEL Command

In Redis, the HDEL command enables us to delete one or more fields in a hash. It deletes the specified field/s at the specified key.

If the field doesn’t exist, it’s ignored. If the key doesn’t exist, it’s treated as an empty hash and 0 is returned.

Read more

Redis HSETNX Command

In Redis, the HSETNX command enables us to set a field in a hash, but only if the field doesn’t already exist. It sets the field at the specified key to the value we provide.

If the key doesn’t exist, it’s created with the specified hash value. If the field already exists, nothing is set (i.e. the command has no effect).

Read more

Redis HSET Command

In Redis, the HSET command enables us to set one or more fields in a hash. It sets the field/s at the specified key to the value/s we provide.

If the key doesn’t exist, it’s created with the specified hash value. If the field already exists, it is overwritten with the new value.

Read more

Redis SUNIONSTORE Command Explained

In Redis, the SUNIONSTORE command does the same thing that SUNION does, except that it stores the result in a key. More specifically, it takes the members of the set resulting from the union of all of the given sets, and stores them in the specified key.

Read more