HDEL key field [field …]

    Time complexity: O(N) where N is the number of fields to be removed.

    : the number of fields that were removed from the hash, not including specified but non existing fields.

    redis> HSET myhash field1 "foo"

    redis> HDEL myhash field2

    redis>