Redis DUMP Command Explained

The Redis DUMP command serialises the value stored at a specified key in a Redis-specific format and returns it to the user.

The serialisation format contains a 64-bit checksum that is used to make sure errors will be detected. The values are in the same format used by the RDB. Also, an RDB version is encoded inside the serialised value, so that different Redis versions with incompatible RDB formats will refuse to process the serialised value.

Read more

Redis EXISTS Command Explained

In Redis, the EXISTS command checks whether the specified keys exist. It returns an integer reply with the number of keys that exist.

We can use the command to check for the existence of one key or multiple keys.

Read more