Easy Tutorial
❮ Transactions Multi Hashes Hkeys ❯

Redis Hdel Command

Redis Hashes

The Redis Hdel command is used to remove one or more specified fields from the hash table key. Non-existent fields are ignored.

Syntax

The basic syntax for the redis Hdel command is as follows:

redis 127.0.0.1:6379> HDEL KEY_NAME FIELD1.. FIELDN

Available Versions

= 2.0.0

Return Value

The number of fields that were successfully deleted, not including ignored fields.

Example

redis 127.0.0.1:6379> HSET myhash field1 "foo"
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field1
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field2
(integer) 0

Redis Hashes

❮ Transactions Multi Hashes Hkeys ❯