Redis DataManagement Basics

About Redis :

  • Redis is a keybased datastructure
  • It store value in key value pair
  • Value can be
    • String
    • List
    • Hashes
    • Set
    • And more
  • We set the data to redis using set command and get the data from redis using get command
  • All data in redis is built on keys

Leave a Comment