Redis.hget

If key holds a hash, retrieve the value associated to the specified field. <p> If the field is not found or the key does not exist, a special 'nil' value is returned. <p> <b>Time complexity:</b> O(1) @param key @param field @return Bulk reply

  1. string hget(string key, string field)
    class Redis
    string
    hget
    (
    string key
    ,
    string field
    )
  2. alias hget = BinaryRedis.hget

Meta