Redis Installation

To Install the Redis, Please refer the Redis official page.

https://redis.io/docs/install/install-redis/

Once Installation complete to verify connect to Redis-cli or Redis client and validate the response from Redis-server.



  • To Check the DB Config. run command info

      

   

  • To Check the specific DB config, run command info <server/clients/memory/cpu/persistence/stats>

     

  • How to Shutdown the Redis database. Shutdown <save/nosave>
          There are two types of shutdown commands.
    

  1. Shutdown Save: This will save the data exists in memory to disk before shutdown the Redis Server.
  2. Shutdown Nosave: This will shutdown the database without saving the data exists in memory.