Redis.hmset

Set the respective fields to the respective values. HMSET replaces old values with new values. <p> If key does not exist, a new key holding a hash is created. <p> <b>Time complexity:</b> O(N) (with N being the number of fields) @param key @param hash @return Return OK or Exception if hash is empty

  1. string hmset(string key, Map!(string, string) hash)
    class Redis
    string
    hmset
    (
    string key
    ,
    Map!(string, string) hash
    )
  2. alias hmset = BinaryRedis.hmset

Meta