Redis Installation Go to Redis official website https://redis.io/ and follow images given below: Scroll down to Windows section. You will see learn…
redis
-
-
Redis Partitioning Partitioning is used to split your Redis data into multiple Redis instances so that every instance contain only a subset…
-
Redis Vs Aerospike Comparison Index Redis Aerospike Introduction Redis is in-memory data structure store, used as database, cache and message broker. Aerospike…
-
Redis All Commands Command Description APPEND key value Append a value to a key AUTH password Authenticate to the server BGREWRITEAOF Asynchronously…
-
Redis Pipelining Before knowing pipelining, first know the concept of Redis: Redis is a TCP server which supports request/response protocol. In Redis,…
-
Redis Backup & Restore SAVE command is used to create a backup of a current Redis database. This command will create a…
-
Redis Scripting Redis scripting is used to evaluate scripts using the Lua interpreter. It is built into Redis starting from version 2.6.0.…
-
Redis Benchmarks Redis benchmark is a utility tool which is used to check the performance of Redis by using multiple (n) command…
-
Redis Security Security is very necessary for a database to keep the data safe and secure. It provides an authentication so if…
-
Redis Client Connection Redis can accept different type of clients’ connections on the configured listening TCP port and on the Unix socket,…