HEXISTS
HEXISTS is a command in Redis that checks whether a specified field exists within a hash stored at a given key. It is used to determine the presence of a field without retrieving its value.
Return value: An integer reply of 1 if the field exists in the hash, and 0 if
Example: If a hash stored at key "user:1000" contains fields "name" and "email", HEXISTS user:1000 email would
Performance: HEXISTS operates in constant time, O(1), regardless of the size of the hash.
Notes: HEXISTS only checks for field existence; it does not return the field's value. If the key