Installing Redis

Redis Cluster Installation

Redis Cluster Installation

Redis Cluster provides a way to run a Redis installation where data is automatically sharded across multiple Redis nodes. In this article, I am going to share steps of Redis Cluster Installation. Redis Cluster also provides some degree of availability during partitions. That is in practical terms the ability to continue the operations when some nodes fail …

Redis Cluster Installation Read More »

Redis Sets Datatype and Commands

Redis SADD – Creating and Adding Members to Redis Sets. sadd users_ip 10.0.0.1 sadd users_ip 10.0.0.2 10.0.0.3 192.168.0 Redis SCARD – Checking total numbers of members available in a list also known as checking cardinality. scard users_ip Redis SMEMBERS – Checking Total Numbers of Members in a set: smembers users_ip Redis SDIFF – Checking Members …

Redis Sets Datatype and Commands Read More »

Installing Redis on Windows

In this article I will guide you step by step on Installing Redis on Windows. Do remember that Redis is not an officially supported Operating System. I do not recommend running any production workload on Redis with Windows. Officially, Redis is not supported on Windows.  You can download Redis 3.2 from here Installation of Rediw …

Installing Redis on Windows Read More »