Redis.hexists

Test for existence of a specified field in a hash. <b>Time complexity:</b> O(1) @param key @param field @return Return true if the hash stored at key contains the specified field. Return false if the key is not found or the field is not present.

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

Meta