Published on

Hashes In Redis

Authors
redis-sets

Redis Hashes are maps between the string fields and the string values. Hence, they are the perfect data type to represent objects. In Redis, every hash can store up to more than 4 billion field-value pairs. Read More

In computing, a hash table (hash map) is a data structure that implements an associative array abstract data type, a structure that can map keys to values. A hash table uses a hash function to compute an index, also called a hash code, into an array of buckets or slots, from which the desired value can be found. Read More

Hashed Commands

  1. HMSET This command is used to store a hash in Redis.
HMSET key field value field value ...
  1. HGETALL This command is used to get all the field value pairs for a given key.
HGETALL key
  1. HGET This command is used to get specific field.
HGET key field
  1. HEXISTS This command used to check if the field is exits, if it exists will return 1, else it will return 0
HEXISTS key field
  1. HDEL This command is used to delete a specific field at hash
HDEL key field
  1. HSETNX This command is used to update the hash, we can use it to add key-value-pair to exists hash
HSETNX key field value