Redis.hdel

Remove the specified field from an hash stored at key. <p> <b>Time complexity:</b> O(1) @param key @param fields @return If the field was present in the hash it is deleted and 1 is returned, otherwise 0 is returned and no operation is performed.

  1. Long hdel(string key, string[] fields)
    class Redis
    Long
    hdel
    (
    string key
    ,
    string[] fields...
    )
  2. alias hdel = BinaryRedis.hdel

Meta