All posts by smavroud

Redis Replication

At the base of Redis replication (excluding the high availability features provided as an additional layer by Redis Cluster or Redis Sentinel) there is a leader follower (master-replica) replication that is simple to use and configure. It allows replica Redis instances to be exact copies of master instances. [Ref] In this post we are going to…

Read More

Enable colors in Man Pages

man is the system’s manual pager. Each page argument given to man is normally the name of a program, utility or function. Edit your shell profile configuration file: Then add the following lines: and source the configuration: Check that the changes work properly: (example: man ping)